ImageGlass.ImageBox.OnPanStart C# (CSharp) Method

OnPanStart() protected method

Raises the PanStart event.
protected OnPanStart ( CancelEventArgs e ) : void
e CancelEventArgs /// The instance containing the event data. ///
return void
        protected virtual void OnPanStart(CancelEventArgs e)
        {
            EventHandler handler;

            handler = PanStart;

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