Table of Contents

Method AddRow

Namespace
Skyline.DataMiner.Scripting
Assembly
QActionHelperBaseClasses.dll

AddRow(string)

Adds a row to the table.

public int AddRow(string row)

Parameters

row string

The primary key of the row.

Returns

int

The 1-based internal position of the row in the table.

AddRow(string, DateTime?)

Adds a row to the table.

public int AddRow(string row, DateTime? timeInfo)

Parameters

row string

The primary key of the row.

timeInfo DateTime?

Timestamp.

Returns

int

The 1-based internal position of the row in the table.

Remarks

  • This overload is supported from DataMiner 10.4.2 onwards (RN 38153).

AddRow(QActionTableRow)

Adds a row to the table.

public int AddRow(QActionTableRow row)

Parameters

row QActionTableRow

The row data.

Returns

int

The 1-based internal position of the row in the table.

AddRow(QActionTableRow, DateTime?)

Adds a row to the table.

public int AddRow(QActionTableRow row, DateTime? timeInfo)

Parameters

row QActionTableRow

The row data.

timeInfo DateTime?

Timestamp.

Returns

int

The 1-based internal position of the row in the table.

Remarks

  • This overload is supported from DataMiner 10.4.2 onwards (RN 38153).

AddRow(object[])

Adds a row to the table.

public int AddRow(object[] row)

Parameters

row object[]

The row data.

Returns

int

The 1-based internal position of the row in the table.

AddRow(object[], DateTime?)

Adds a row to the table.

public int AddRow(object[] row, DateTime? timeInfo)

Parameters

row object[]

The row data.

timeInfo DateTime?

Timestamp.

Returns

int

The 1-based internal position of the row in the table.

Remarks

  • This overload is supported from DataMiner 10.4.2 onwards (RN 38153).