How can I add a custom property in UltraTreeNode collection? using UltraTree Infragistics control 12.x version.
For example:
UltraTree MyUltraTree = new UltraTree();
UltraTreeNode MyNode = new UltraTreeNode();
MyNode.Text = "Caption of My Node";
MyNode.MyCustomProperty = "This is custom property want to Add in Node Collection";
MyUltraTree.Nodes.Add(MyNode);