Page 1 of 1

Hook request - menuItemZoom_Click()

Posted: Mon Dec 14, 2020 5:50 am
by wjstarck
Hello-

I would like a hook added at the bottom of MenuItemZoom_Click() on FormOpenDental below line 5028 like so:

Code: Select all

				this.Size=new Size(LayoutManager.Scale(size96Old.Width),LayoutManager.Scale(size96Old.Height));
			}
			Plugins.HookAddCode(this, "menuItemZoom_Click_bottom", this.Menu);
Thanks.

Re: Hook request - menuItemZoom_Click()

Posted: Wed Dec 30, 2020 8:28 am
by joes
This hook will be available in version 20.5.10. The hook was modified to meet our naming conventions.

Code: Select all

Plugins.HookAddCode(this,"FormOpenDental.menuItemZoom_Click_end",this.Menu);

Re: Hook request - menuItemZoom_Click()

Posted: Wed Dec 30, 2020 12:08 pm
by wjstarck
Thanks Joe