RowFirstVisible - property of the PmgWTable object
Description:
Row index that is displayed as 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 nFirstRow = oTable.RowFirstVisible;
// Reading from the property
oTable.RowFirstVisible = 3;
// Writing into the property
Dim oTable
Set oTable = pMe.Items("/Table")
Dim nFirstRow
nFirstRow = oTable.RowFirstVisible
' Reading from the property
oTable.RowFirstVisible = 3
' Writing into the property