SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTree/NET 2.0 - Tree Control
Returns an item's SftBoxCell object given a column number.
Get
| 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]; ISftBoxCell* refCellObj = object->GetCell(short ColNum); |
| C | HRESULT object->get_Cell(short ColNum, ISftBoxCell** refCellObj); |
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.
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.
See Also SftBoxItem Object | Object Hierarchy
