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!

TreeViewEventHandler Delegate

Represents the method that will handle the OnAfterCheck, OnAfterCollapse, OnAfterExpand, or OnAfterSelect event of a TreeView.

[Visual Basic]
Public Delegate Sub TreeViewEventHandler( _
   ByVal sender As Object, _
   ByVal e As TreeViewEventArgs _
)
[C#]
public delegate void TreeViewEventHandler(
   object sender,
   TreeViewEventArgs e
);
[C++]
public __gc __delegate void TreeViewEventHandler(
   Object* sender,
   TreeViewEventArgs* e
);

[JScript] In JScript, you can use the delegates in the NGWS frameworks, but you cannot define your own.

Parameters [Visual Basic, C#, C++]

The declaration of your event-handling method must have the same parameters as the TreeViewEventHandler delegate declaration.

Remarks

[To be supplied.]

Requirements

Namespace: System.WinForms

Assembly: System.WinForms.dll

See Also

System.WinForms Namespace | TreeViewCancelEventHandler