Version

MaxColumnWidth Property

Determines the maximum possible width of the item columns. Set this to 0 to have no maximum width.
Syntax
'Declaration
 
Public Property MaxColumnWidth As Integer
public int MaxColumnWidth {get; set;}
Example
This snippet shows how to specify the minimal and maximal widths allowed for the columns of items in an UltraOptionSet.

Private Sub Form1_Load(sender As Object, e As System.EventArgs) Handles MyBase.Load
   Me.UltraOptionSet1.MaxColumnWidth = 175
   Me.UltraOptionSet1.MinColumnWidth = 160
End Sub
private void Form1_Load(object sender, System.EventArgs e)
{
	this.ultraOptionSet1.MaxColumnWidth = 175;
	this.ultraOptionSet1.MinColumnWidth = 160;
}
Requirements

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

See Also