DekGenius.com
[ Team LiB ] Previous Section Next Section

ScrollEventArgs

System.Windows.Forms (system.windows.forms.dll)class

This class encapsulates the data for the ScrollBar.Scroll event. You can determine the NewValue of the scrollbar and the Type of the scroll event (see ScrollEventType for details).

public class ScrollEventArgs : EventArgs {
// Public Constructors
   public ScrollEventArgs(ScrollEventType type, int newValue);
// Public Instance Properties
   public int NewValue{set; get; }
   public ScrollEventType Type{get; }
}

Hierarchy

System.Object System.EventArgs ScrollEventArgs

Passed To

DataGrid.{GridHScrolled(), GridVScrolled()}, ScrollBar.OnScroll(), ScrollEventHandler.{BeginInvoke(), Invoke()}

    [ Team LiB ] Previous Section Next Section