ISchedulerRowSet.GetRows Method

Definition

Overloads

GetRows(Int32, Int32)

Retrieve the specified range of rows from the rowset.

GetRows(Int32, Int32, Int32)

Retrieves the specified range of rows from the rowset and returns a count of the number of rows in the rowset.

GetRows(Int32, Int32)

Retrieve the specified range of rows from the rowset.

public Microsoft.Hpc.Scheduler.Properties.PropertyRowSet GetRows (int firstRow, int lastRow);
abstract member GetRows : int * int -> Microsoft.Hpc.Scheduler.Properties.PropertyRowSet
Public Function GetRows (firstRow As Integer, lastRow As Integer) As PropertyRowSet

Parameters

firstRow
Int32

The zero-based index to the first row to retrieve.

lastRow
Int32

The zero-based index to the last row to retrieve.

Returns

A PropertyRowSet object that contains the specified rows.

Applies to

GetRows(Int32, Int32, Int32)

Retrieves the specified range of rows from the rowset and returns a count of the number of rows in the rowset.

public Microsoft.Hpc.Scheduler.Properties.PropertyRowSet GetRows (int firstRow, int lastRow, out int rowCount);
abstract member GetRows : int * int *  -> Microsoft.Hpc.Scheduler.Properties.PropertyRowSet
Public Function GetRows (firstRow As Integer, lastRow As Integer, ByRef rowCount As Integer) As PropertyRowSet

Parameters

firstRow
Int32

The zero-based index to the first row to retrieve.

lastRow
Int32

The zero-based index to the last row to retrieve.

rowCount
Int32

The number of rows in the rowset (the same as if you called the GetCount() method).

Returns

A PropertyRowSet object that contains the specified rows.

Applies to