ImageGlass.ImageBox.OnAutoPanChanged C# (CSharp) Method

OnAutoPanChanged() protected method

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

            handler = AutoPanChanged;

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