|
|
|
SftBox.Column Property |
Returns a SftBoxColumn object for a given column.
Syntax
VB.NET |
refColumnObj = object.get_Column(ByVal ColNum As Short) As SftBoxColumn |
||
VB |
Set refColumnObj = object.Column(ByVal ColNum As Integer) As SftBoxColumn |
||
C#.NET |
SftBoxColumn refColumnObj = object.get_Column(short ColNum); |
||
VC++ |
ISftBoxColumn* refColumnObj = object->Column[short ColNum];
|
||
C |
HRESULT object->get_Column(short ColNum, ISftBoxColumn** refColumnObj); |
||
Delphi |
refColumnObj := object.Column[ColNum : Smallint] : ISftBoxColumn; |
object
A SftBox object.
ColNum
The zero-based index of the column to be accessed. The number of available columns is defined using the Columns.Count property.
refColumnObj
Returns a reference to the SftBoxColumn object for column ColNum.
Comments
The Column property returns a SftBoxColumn object for a given column.
The properties of the column can be updated using the returned SftBoxColumn object.