ImageGlass.ImageBox.OnAllowZoomChanged C# (CSharp) Method

OnAllowZoomChanged() protected method

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

            handler = AllowZoomChanged;

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