ImageGlass.ImageBox.OnZoomChanged C# (CSharp) Method

OnZoomChanged() protected method

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

            AdjustLayout();

            handler = ZoomChanged;

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