StartHeight - property of the PmgWTable object
Description:
Height of the table rows. The property can be set any time in processing the table.
Note:
Property access
for read and write. The preset value of this property is defined in the "
Row height" 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 nHeight = oTable.StartHeight; //reading
oTable.StartHeight = 15; //writing
Dim oTable, nHeight
Set oTable = pMe.Items("/Table")
nHeight = oTable.StartHeight 'reading
oTable.StartHeight = 15 'writing