ComponentFactory.Krypton.Toolkit.ViewDrawTrackBar.OnScroll C# (CSharp) Method

OnScroll() protected method

Raises the Scroll event.
protected OnScroll ( EventArgs e ) : void
e System.EventArgs An EventArgs containing the event data.
return void
        protected virtual void OnScroll(EventArgs e)
        {
            if (Scroll != null)
                Scroll(this, e);
        }