|
|
|
SftDirectory.ColumnCount Property |
Defines the number of columns.
Syntax
VB.NET |
Count = object.ColumnCount As Integer |
||
VB |
Count = object.ColumnCount As Long |
||
C#.NET |
int Count = object.ColumnCount; |
||
VC++ |
long Count = object->ColumnCount;
|
||
C |
HRESULT object->get_ColumnCount(long* Count); |
||
Delphi |
Count := object.ColumnCount : Integer; |
||
VB.NET |
object.ColumnCount = Count As Integer |
||
VB |
object.ColumnCount = Count As Long |
||
C#.NET |
int object.ColumnCount = Count; |
||
VC++ |
long object->ColumnCount = Count;
|
||
C |
HRESULT object->put_ColumnCount(long Count); |
||
Delphi |
object.ColumnCount := Count : Integer; |
object
A SftDirectory object.
Count
Defines the number of columns.
Comments
The ColumnCount property defines the number of columns.
The contents of newly added columns can be defined using the Column.Contents property.