Method AddRow
AddRow(string)
Adds a row to the table.
public int AddRow(string row)
Parameters
row
stringThe 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
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
QActionTableRowThe 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
QActionTableRowThe 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
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).