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!

ListManager CurrentChanging Event

[To be supplied.]

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

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

Parameters

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

See Also

ListManager Class | ListManager MembersTopic | System.WinForms Namespace