|
|
|
SftDirectoryColumn.MinWidth Property |
Defines the column's minimum width.
Syntax
VB.NET |
Width = object.MinWidth As Single |
||
VB |
Width = object.MinWidth As Single |
||
C#.NET |
float Width = object.MinWidth; |
||
VC++ |
float Width = object->MinWidth;
|
||
C |
HRESULT object->get_MinWidth(float* Width); |
||
Delphi |
Width := object.MinWidth : Single; |
||
VB.NET |
object.MinWidth = Width As Single |
||
VB |
object.MinWidth = Width As Single |
||
C#.NET |
float object.MinWidth = Width; |
||
VC++ |
float object->MinWidth = Width;
|
||
C |
HRESULT object->put_MinWidth(float Width); |
||
Delphi |
object.MinWidth := Width : Single; |
object
A SftDirectoryColumn object.
Width
Defines the column's minimum width. The units used depend on the container (Visual Basic, Visual C++, etc.) and the coordinate system used.
Comments
The MinWidth property defines the column's minimum width.
If a minimum width is specified, the end-user cannot use column resizing to make the column smaller than the specified width.
The MinWidthPix property can be used to define the column's minimum width using pixels.