Table of Contents

Property this

Namespace
Skyline.DataMiner.Scripting
Assembly
QActionHelperBaseClasses.dll

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 int

The 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 string

The 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

row int

The 0-based index of the row.

column int

The 0-based index of the column.

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

row string

The primary key of the row.

column int

The 0-based index of the column.

Property Value

object

The cell value.

Remarks

The implementation of this indexer uses the GetParameterIndexByKey and SetParameterIndexByKey methods defined in the SLProtocol interface.