NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

DataGrid.OnScroll

Raises the System.WinForms.DataGrid.Scroll event.

[Visual Basic]
Protected Sub OnScroll( _
   ByVal e As EventArgs _
)
[C#]
protected void OnScroll(
   EventArgs e
);
[C++]
protected: void OnScroll(
   EventArgs* e
);
[JScript]
protected function OnScroll(
   e : EventArgs
);

Parameters

e
An EventArgs that contains the event data.

Remarks

Raising an event invokes the event-handling method through a delegate. For an overview, see TBD. Notes to Inheritors When overriding OnScroll in a derived class, be sure to call the base class's OnScroll method.

See Also

DataGrid Class | DataGrid Members | System.WinForms Namespace