ImageGlass.ImageBox.OnZoomLevelsChanged C# (CSharp) Method

OnZoomLevelsChanged() protected method

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

            handler = ZoomLevelsChanged;

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