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!

DataView ListChanged Event

Occurs when the list managed by the DataView changes.

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

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

Parameters

sender
The source of the event.
e
A ListChangedEventArgs that contains the event data. The following ListChangedEventArgs properties provide information specific to this event.
Property Description
ListChangedType
[To be supplied.]
NewIndex
[To be supplied.]
OldIndex
[To be supplied.]

See Also

DataView Class | DataView MembersTopic | System.Data Namespace