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.AddOnAfterExpand

Adds an event handler for the "afterExpand" event notification. The afterExpand event is fired after the user has successfully expanded a node. Expanding a node causes its child nodes to be displayed.

[Visual Basic]
Public Sub AddOnAfterExpand( _
   ByVal handler As TreeViewEventHandler _
)
[C#]
public void AddOnAfterExpand(
   TreeViewEventHandler handler
);
[C++]
public: void AddOnAfterExpand(
   TreeViewEventHandler* handler
);
[JScript]
public function AddOnAfterExpand(
   handler : TreeViewEventHandler
);

Parameters

handler
The event handler to install.

See Also

TreeView Class | TreeView Members | System.WinForms Namespace