|
|
|
SftBoxItem.Cell Property |
Returns an item's SftBoxCell object given a column number.
Syntax
VB.NET |
refCellObj = object.Cell(ByVal ColNum As Short) As SftBoxCell |
||
VB |
Set refCellObj = object.Cell(ByVal ColNum As Integer) As SftBoxCell |
||
C#.NET |
SftBoxCell refCellObj = object.get_Cell(short ColNum); |
||
VC++ |
ISftBoxCell* refCellObj = object->Cell[short ColNum];
|
||
C |
HRESULT object->get_Cell(short ColNum, ISftBoxCell** refCellObj); |
||
Delphi |
refCellObj := object.Cell[ColNum : Smallint] : ISftBoxCell; |
object
A SftBoxItem object.
ColNum
The zero-based index of the column to be accessed. The number of available columns is defined using the Columns.Count property.
refCellObj
Returns a reference to the SftBoxCell object for the cell at column ColNum.
Comments
The Cell property returns an item's SftBoxCell object given a column number.
The Cell property returns a SftBoxCell object for the desired cell. The properties of the cell can be updated using the returned SftBoxCell object.
The Item.Cell property is identical to the control's Cell property. They return the same object.