GetRowsRange Method
The grid object.
Index of first visible row.
Index of last visible row.
Total count of rows in the table.
This method supports the UFT infrastructure. Do not call it directly in your code.
Remarks
If the first visible row is not known, pFirstVisible is set to -1.

If the last visible row is not known, both pLastVisible and pFirstVisible are set to -1.

Row indexes are 0-based.

GetRowsRange calls the Custom Server's implementation of GetTableRowRange.
Syntax
'Declaration
 
Public Sub GetRowsRange( _
   ByVal Grid As System.Object, _
   ByRef pFirstVisible As System.Integer, _
   ByRef pLastVisible As System.Integer, _
   ByRef pTotal As System.Integer _
) 
public void GetRowsRange( 
   System.object Grid,
   out System.int pFirstVisible,
   out System.int pLastVisible,
   out System.int pTotal
)

Parameters

Grid
The grid object.
pFirstVisible
Index of first visible row.
pLastVisible
Index of last visible row.
pTotal
Total count of rows in the table.