Puts the node into edit mode.
The following code shows how the begin editing a node. This places a textbox over the node's text area so the user can modify the text.
Imports Infragistics.Win.UltraWinTree
Private Sub button12_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button12.Click
Dim node As UltraTreeNode
node = Me.ultraTree1.ActiveNode
If node Is Nothing Then Return
' Make sure the node is in view
node.BringIntoView()
' Start editing the active node
node.BeginEdit()
End Sub
using Infragistics.Win.UltraWinTree;
private void button12_Click(object sender, System.EventArgs e)
{
UltraTreeNode node = this.ultraTree1.ActiveNode;
if ( node == null )
return;
// Make sure the node is in view
node.BringIntoView();
// Start editing the active node
node.BeginEdit();
}
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2