|
|
|
SftTree.Column Property |
Returns a SftTreeColumn object for a given column.
Syntax
VB.NET |
refColumnObj = object.get_Column(ByVal ColIndex As Short) As SftTreeColumn |
||
VB |
Set refColumnObj = object.Column(ByVal ColIndex As Integer) As SftTreeColumn |
||
C#.NET |
SftTreeColumn refColumnObj = object.get_Column(short ColIndex); |
||
VC++ |
ISftTreeColumn* refColumnObj = object->Column[short ColIndex];
|
||
C |
HRESULT object->get_Column(short ColIndex, ISftTreeColumn** refColumnObj); |
||
Delphi |
refColumnObj := object.Column[ColIndex : Smallint] : ISftTreeColumn; |
object
A SftTree object.
ColIndex
The zero-based column number.
refColumnObj
Returns a SftTreeColumn object for a given column.
Comments
The Column property returns a SftTreeColumn object for a given column.
The SftTreeColumn object represents one column in a SftTree/OCX control. Numerous column-specific properties and methods can be accessed using the returned object refColumnObj.
Certain default properties and behavior for all columns can be defined using the SftTreeColumns object.
See Also SftTree Object | Object Hierarchy