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 Navigate Event

Occurs when the user navigates to a new table.

The following declaration shows the syntax for a method that handles the Navigate event.

[Visual Basic]
Private Sub DataGridName_Navigate( _
   ByVal sender As Object, _
   ByVal e As NavigateEventArgs _
)
[C#]
private void DataGridName_Navigate(
   object sender,
   NavigateEventArgs e
);
[C++]
private: void DataGridName_Navigate(
   Object* sender,
   NavigateEventArgs* e
);
[JScript]
private DataGridName_Navigate(
   sender : Object,
   e : NavigateEventArgs
);

Parameters

sender
The source of the event.
e
A NavigateEventArgs that contains the event data. The following NavigateEventArgs properties provide information specific to this event.
Property Description
Forward
[To be supplied.]
SourceRow
[To be supplied.]

See Also

DataGrid Class | DataGrid MembersTopic | System.WinForms Namespace