ImageGlass.ImageBox.OnZoomed C# (CSharp) Method

OnZoomed() protected method

Raises the Zoomed event.
protected OnZoomed ( ImageBoxZoomEventArgs e ) : void
e ImageBoxZoomEventArgs The instance containing the event data.
return void
        protected virtual void OnZoomed(ImageBoxZoomEventArgs e)
        {
            EventHandler<ImageBoxZoomEventArgs> handler;

            handler = Zoomed;

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