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

[To be supplied.]

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

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

Parameters

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

See Also

TreeView Class | TreeView MembersTopic | System.WinForms Namespace