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

[To be supplied.]

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

[Visual Basic]
Private Sub TreeViewName_AfterSelect( _
   ByVal sender As Object, _
   ByVal e As TreeViewEventArgs _
)
[C#]
private void TreeViewName_AfterSelect(
   object sender,
   TreeViewEventArgs e
);
[C++]
private: void TreeViewName_AfterSelect(
   Object* sender,
   TreeViewEventArgs* e
);
[JScript]
private TreeViewName_AfterSelect(
   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