RowFirstVisible - property of the PmgWTable object
Description:
Row index that is displayed as the first one after the fixed rows (zero-based index).
Syntax:
Long RowFirstVisible
Note:
Property access
for read and write.
It is used e.g. for automatic scrolling in the table.
This property is also functional in Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTable = pMe.Items("/Table");
var nResize = oTable.RowFirstVisible; //reading
oTable.RowFirstVisible = 1; //writing
Dim oTable, nResize
Set oTable = pMe.Items("/Table")
nResize = oTable.RowFirstVisible 'reading
oTable.RowFirstVisible = 1 'writing