ImageGlass.ImageBox.OnPanEnd C# (CSharp) Method

OnPanEnd() protected method

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

            handler = PanEnd;

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