Property this
this[int]
Gets or sets the row at the specified index (0-based).
Note that this indexer should not be used. Using this[string] instead is highly recommended.
public object[] this[int row] { get; set; }
Parameters
row
intThe 0-based index of the row.
Property Value
- object[]
The row data.
Remarks
The implementation of this indexer uses the GetRow and SetRow methods defined in the SLProtocol interface.
this[string]
Gets or sets the row with the specified primary key.
public object[] this[string row] { get; set; }
Parameters
row
stringThe primary key of the row.
Property Value
- object[]
The row data.
Remarks
The implementation of this indexer uses the GetRow and SetRow methods defined in the SLProtocol interface.
this[int, int]
Gets or sets the cell at the specified row and column index (0-based).
Note that this indexer should not be used. Using this[string, int] instead is highly recommended.
public object this[int row, int column] { get; set; }
Parameters
Property Value
- object
The cell value.
Remarks
The implementation of this indexer uses the GetParameterIndex and SetParameterIndex methods defined in the SLProtocol interface.
this[string, int]
Gets or sets the cell at the specified row and column index (0-based).
public object this[string row, int column] { get; set; }
Parameters
Property Value
- object
The cell value.
Remarks
The implementation of this indexer uses the GetParameterIndexByKey and SetParameterIndexByKey methods defined in the SLProtocol interface.