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!

TreeView AfterCollapse Event

[To be supplied.]

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

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

Parameters

sender
The source of the event.
e
A TreeViewEventArgs that contains the event data. The following TreeViewEventArgs properties provide information specific to this event.
Property Description
Action
An event specific action-flag.

See Also

TreeView Class | TreeView MembersTopic | System.WinForms Namespace