Table of Contents

Method DeleteRow

Namespace
Skyline.DataMiner.Scripting
Assembly
QActionHelperBaseClasses.dll

DeleteRow(List<string>)

Removes the specified rows from the specified table.

public int DeleteRow(List<string> rows)

Parameters

rows List<string>

The primary keys of the rows to remove.

Returns

int

The number of remaining rows in the table.

DeleteRow(string[])

Removes the specified rows from the specified table.

public int DeleteRow(string[] rows)

Parameters

rows string[]

The primary keys of the rows to remove.

Returns

int

The number of remaining rows in the table.

DeleteRow(int)

Removes the specified row from the specified table.

public int DeleteRow(int row)

Parameters

row int

The 0-based index of the row.

Returns

int

The number of remaining rows in the table.

DeleteRow(string)

Removes the specified row from the specified table.

public int DeleteRow(string row)

Parameters

row string

The primary key of the row to remove.

Returns

int

The number of remaining rows in the table.