ColFirstVisible - property of the PmgWTable object
Description:
Column index that is displayed as the first one after the fixed columns (zero-based index).
Syntax:
Long ColFirstVisible
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 n = oTable.ColFirstVisible;
// Reading from the property
oTable.ColFirstVisible = 1;
// Writing into the property
Dim oTable
Set oTable = pMe.Items("/Table")
Dim n
n = oTable.ColFirstVisible
' Reading from the property
oTable.ColFirstVisible = 1
' Writing into the property