FixedRows - property of the PmgWTable object
Description:
The number of fixed table rows.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTable = pMe.Items("/Table");
var nFixedRows = oTable.FixedRows;
// Reading from the property
oTable.FixedRows = 1;
// Writing into the property
Dim oTable
Set oTable = pMe.Items("/Table")
Dim nFixedRows
nFixedRows = oTable.FixedRows
' Reading from the property
oTable.FixedRows = 1
' Writing into the property