Table of Contents

Method GetRow

Namespace
Skyline.DataMiner.Scripting
Assembly
QActionHelperBaseClasses.dll

GetRow(string)

Gets a row from the table.

public object[] GetRow(string row)

Parameters

row string

The primary key of the row.

Returns

object[]

The row data.

Remarks

This method acts as an alternative for and wraps the corresponding indexer defined in this class.

GetRow(int)

Gets a row from the table.

public object[] GetRow(int row)

Parameters

row int

The 0-based index of the row.

Returns

object[]

The row data.

Remarks

This method acts as an alternative for and wraps the corresponding indexer defined in this class.