ColumnWidth Property
Description
Get/set the width in pixels of all columns in a multi-column task panel.
Property Type
Read-write property
Syntax (Visual Basic)
Public Property ColumnWidth() As Long
Remarks
The MultiColumn property is used to enable multiple columns of items within a group. The ColumnWidth property is used to specify the width of all columns within the groups.
Below is a picture of a group with multiple columns enabled with a ColumnWidth of 75 pixels.

Example
Multi-Column Sample (Visual Basic)
This sample illustrates how to enable multi-columns in groups and how to set the width of all columns in the groups.
' Enable multi-columns in groups
wndToolBox.MultiColumn = True
' Specify the width of columns in groups
wndToolBox.ColumnWidth = 75
See Also
Copyright (c) 1998-2024 Codejock Technologies. All rights reserved.