|
|
|
|
Item Property, ItemCollectionClass Class |
Returns the specified item or cell.
Syntax ItemCollectionClass Class (Softelvdm.SftTreeNET)
VB |
Public Default ReadOnly Property Item( _ |
C# |
public CellClass this[ int ItemIndex int ColIndex ] { get; } |
C++ |
public: property CellClass^ this[ int , int ] { |
ColIndex
Defines zero-based column index of the cell to retrieve from the item's cell collection. The valid range for ColIndex is 0 .. this[ItemIndex].Cells.Count-1.
ItemIndex
Defines the zero-based item index of the item to retrieve from the item collection. The valid range for ColIndex is 0 .. Count-1.
Property Value
The item or cell at the specified zero-based index.
Comments
The Item property returns the specified item or cell.
The Item property is the indexer of the ItemCollectionClass class, so languages supporting indexers can use array syntax, usually [] or (), to access the Item property.