Retaining node text...

Hi, I want the node text after the user enters new text in upper case letters. Could you please tell me the way. Thanks in advance. Regards, Praveen.

1 Reply

DT Deepa TS Syncfusion Team January 3, 2006 08:37 AM UTC

Hi Praveen, You could do so by handling NodeEditorValidated event to enter new text in upper case letters. private void treeViewAdv1_NodeEditorValidated(object sender, Syncfusion.Windows.Forms.Tools.TreeNodeAdvEditEventArgs e) { e.Node.Text = e.Node.Text.ToUpper(); } Please let me know if this meets your requirement. Thanks for your patience and interest in Syncfusion products Regards, Deepa.T.S

Loader.
Up arrow icon