UFT Extensibility Agent library 1.3
GetTabularData Method
The index of the first row of data to return.
The index of the last row of data to return.
An array of column titles.
Summary
A two-dimensional array of cell data.
Description
Returns the table data in the specified range.
Syntax
Visual Basic
Public Sub GetTabularData( _
   ByVal objId As Variant, _
   ByVal uMinRow As UInt, _
   ByVal uMaxRow As UInt, _
   ByRef columnTitles() As String, _
   ByRef tableData() As Variant _
) 
Parameters
objId
uMinRow
The index of the first row of data to return.
uMaxRow
The index of the last row of data to return.
columnTitles
An array of column titles.
tableData
Summary
A two-dimensional array of cell data.
Remarks

Implement this method if the Testing Agent supports table check points.

GetTabularAttributes is generally called before this method to get the visible row numbers.

See Also