ImageGlass.ImageBox.OnScroll C# (CSharp) Method

OnScroll() protected method

Raises the Scroll event.
protected OnScroll ( ScrollEventArgs e ) : void
e System.Windows.Forms.ScrollEventArgs /// The instance containing the event data. ///
return void
        protected virtual void OnScroll(ScrollEventArgs e)
        {
            ScrollEventHandler handler;

            handler = Scroll;

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