FixedCols - property of the PmgWTable object
Description:
The number of fixed table columns.
Note:
Property access
for read and write. The preset value of this property is defined in the "
Number of columns in the fixed area" configurator of this object.
The property can also be set by the Dim method.
This property is also functional in Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTable = pMe.Items("/Table");
var nFixedCols = oTable.FixedCols; //reading
oTable.FixedCols = 1; //writing
Dim oTable, nFixedCols
Set oTable = pMe.Items("/Table")
nFixedCols = oTable.FixedCols 'reading
oTable.FixedCols = 1 'writing