C# Class Evbpc.Framework.Windows.Forms.ScrollEventArgs

Provides data for the Scroll event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.ScrollEventArgs(v=vs.110).aspx
Inheritance: System.EventArgs
Show file Open project: EBrown8534/Framework Class Usage Examples

Public Methods

Method Description
ScrollEventArgs ( ScrollEventType type, int newValue ) : System

Initializes a new instance of the ScrollEventArgs class using the given values for the Type and NewValue properties.

http://msdn.microsoft.com/en-us/library/3t1y9bcb(v=vs.110).aspx

ScrollEventArgs ( ScrollEventType type, int newValue, ScrollOrientation scroll ) : System

Initializes a new instance of the ScrollEventArgs class using the given values for the Type, NewValue, and ScrollOrientation properties.

http://msdn.microsoft.com/en-us/library/yc9axxs4(v=vs.110).aspx

ScrollEventArgs ( ScrollEventType type, int oldValue, int newValue ) : System

Initializes a new instance of the ScrollEventArgs class using the given values for the Type, OldValue, and NewValue properties.

http://msdn.microsoft.com/en-us/library/4kfeedwb(v=vs.110).aspx

ScrollEventArgs ( ScrollEventType type, int oldValue, int newValue, ScrollOrientation scroll ) : System

Initializes a new instance of the ScrollEventArgs class using the given values for the Type, OldValue, NewValue, and ScrollOrientation properties.

http://msdn.microsoft.com/en-us/library/wy4h3cfs(v=vs.110).aspx

Method Details

ScrollEventArgs() public method

Initializes a new instance of the ScrollEventArgs class using the given values for the Type and NewValue properties.
http://msdn.microsoft.com/en-us/library/3t1y9bcb(v=vs.110).aspx
public ScrollEventArgs ( ScrollEventType type, int newValue ) : System
type ScrollEventType One of the values.
newValue int The new value for the scroll bar.
return System

ScrollEventArgs() public method

Initializes a new instance of the ScrollEventArgs class using the given values for the Type, NewValue, and ScrollOrientation properties.
http://msdn.microsoft.com/en-us/library/yc9axxs4(v=vs.110).aspx
public ScrollEventArgs ( ScrollEventType type, int newValue, ScrollOrientation scroll ) : System
type ScrollEventType One of the values.
newValue int The new value for the scroll bar.
scroll ScrollOrientation One of the values.
return System

ScrollEventArgs() public method

Initializes a new instance of the ScrollEventArgs class using the given values for the Type, OldValue, and NewValue properties.
http://msdn.microsoft.com/en-us/library/4kfeedwb(v=vs.110).aspx
public ScrollEventArgs ( ScrollEventType type, int oldValue, int newValue ) : System
type ScrollEventType One of the values.
oldValue int The old value for the scroll bar.
newValue int The new value for the scroll bar.
return System

ScrollEventArgs() public method

Initializes a new instance of the ScrollEventArgs class using the given values for the Type, OldValue, NewValue, and ScrollOrientation properties.
http://msdn.microsoft.com/en-us/library/wy4h3cfs(v=vs.110).aspx
public ScrollEventArgs ( ScrollEventType type, int oldValue, int newValue, ScrollOrientation scroll ) : System
type ScrollEventType One of the values.
oldValue int The old value for the scroll bar.
newValue int The new value for the scroll bar.
scroll ScrollOrientation One of the values.
return System