Gets/sets the
UltraTreeColumnSet instance that defines the column structure for
UltraTreeNodes associated with this instance.
The following code sample demonstrates how to use the ColumnSet property of the Override to assign an UltraTreeColumnSet object to a particular node.
Imports Infragistics.Win
Imports Infragistics.Win.Layout
Imports Infragistics.Win.UltraWinTree
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Me.ultraTree1.ViewStyle = ViewStyle.FreeForm
Dim columnSet As UltraTreeColumnSet = Me.ultraTree1.ColumnSettings.ColumnSets.Add("myColumnSet")
Me.ultraTree1.ActiveNode.Override.ColumnSet = columnSet
End Sub
using Infragistics.Win;
using Infragistics.Win.Layout;
using Infragistics.Win.UltraWinTree;
using System.Diagnostics;
private void button1_Click(object sender, System.EventArgs e)
{
this.ultraTree1.ViewStyle = ViewStyle.FreeForm;
UltraTreeColumnSet columnSet = this.ultraTree1.ColumnSettings.ColumnSets.Add( "myColumnSet" );
this.ultraTree1.ActiveNode.Override.ColumnSet = columnSet;
}
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