'Declaration Public Event ValidateLabelEdit As ValidateLabelEditEventHandler
public event ValidateLabelEditEventHandler ValidateLabelEdit
The event handler receives an argument of type ValidateLabelEditEventArgs containing data related to this event. The following ValidateLabelEditEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel (Inherited from System.ComponentModel.CancelEventArgs) | |
LabelEditText | Gets/sets the text of the node being edited. |
Node | Returns the node being edited |
OriginalText | Returns the original text of the node. |
StayInEditMode | Gets/sets whether the node will remain in edit mode. |
This event can be used to validate the new node text entered into the edit window before it is committed to the node.
The e.NodeText parameter gets/sets the new node text.
Imports Infragistics.Win.UltraWinTree Private Sub ultraTree1_ValidateLabelEdit(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinTree.ValidateLabelEditEventArgs) Handles ultraTree1.ValidateLabelEdit Dim tree As Infragistics.Win.UltraWinTree.UltraTree tree = sender Dim sb As New System.Text.StringBuilder() sb.Append("Node: ") sb.Append(tree.ActiveNode.Key) sb.Append("'s text is being changed to: ") sb.Append(e.LabelEditText) Dim dr As DialogResult dr = MessageBox.Show(Me, _ sb.ToString(), _ "Node text changing", _ MessageBoxButtons.OKCancel) If dr = DialogResult.Cancel Then e.Cancel = True ' Note: Instead of canceling the edit you can ' change the text by setting the LabelEditText ' property of the event parameters in this event. 'e.LabelEditText = "some new text" End Sub
using System.Diagnostics; using Infragistics.Win.UltraWinTree; private void ultraTree1_ValidateLabelEdit(object sender, Infragistics.Win.UltraWinTree.ValidateLabelEditEventArgs e) { Infragistics.Win.UltraWinTree.UltraTree tree; tree = sender as Infragistics.Win.UltraWinTree.UltraTree; System.Text.StringBuilder sb = new System.Text.StringBuilder(); sb.Append("Node: "); sb.Append(tree.ActiveNode.Key); sb.Append("'s text is being changed to: "); sb.Append(e.LabelEditText); DialogResult dr = MessageBox.Show( this, sb.ToString(), "Node text changing", MessageBoxButtons.OKCancel ); if ( dr == DialogResult.Cancel ) e.Cancel = true; // Note: Instead of canceling the edit you can // change the text by setting the LabelEditText // property of the event parameters in this event. //e.LabelEditText = "some new text"; }
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