ImageGlass.ImageBox.OnAllowClickZoomChanged C# (CSharp) Method

OnAllowClickZoomChanged() protected method

Raises the AllowClickZoomChanged event.
protected OnAllowClickZoomChanged ( EventArgs e ) : void
e System.EventArgs /// The instance containing the event data. ///
return void
        protected virtual void OnAllowClickZoomChanged(EventArgs e)
        {
            EventHandler handler;

            handler = AllowClickZoomChanged;

            if (handler != null)
            {
                handler(this, e);
            }
        }
ImageBox