|
|
|
SftTreeColumn.MinWidthPix Property |
Defines the minimum width of this column.
Syntax
VB.NET |
WPix = object.MinWidthPix As Integer |
||
VB |
WPix = object.MinWidthPix As Long |
||
C#.NET |
int WPix = object.MinWidthPix; |
||
VC++ |
long WPix = object->MinWidthPix;
|
||
C |
HRESULT object->get_MinWidthPix(long* WPix); |
||
Delphi |
WPix := object.MinWidthPix : Integer; |
||
VB.NET |
object.MinWidthPix = WPix As Integer |
||
VB |
object.MinWidthPix = WPix As Long |
||
C#.NET |
int object.MinWidthPix = WPix; |
||
VC++ |
long object->MinWidthPix = WPix;
|
||
C |
HRESULT object->put_MinWidthPix(long WPix); |
||
Delphi |
object.MinWidthPix := WPix : Integer; |
object
A SftTreeColumn object.
WPix
Defines the minimum width of this column in pixels.
Comments
The MinWidthPix property defines the minimum width of this column.
The Column.MinWidth and Column.MinWidthPix properties are synonyms, but may use different coordinate systems.
The MinWidthPix property is used to change the minimum width of a column. The minimum column width must be less than or equal to the column's defined width. The column width can be defined using the Column.Width property. The minimum column width is only used to prevent the user from resizing the column and making it smaller than the defined minimum width.
See Also SftTreeColumn Object | Object Hierarchy