ResizeColEnabled - property of the PmgWTable object
Description:
Enable/disable to change the column width by dragging the mouse by the column edge.
Syntax:
Long ResizeColEnabled
Values:
0 - change the column width is disabled
1 - change the column width is enabled
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTable = pMe.Items("/Table");
var nResize = oTable.ResizeColEnabled; //reading
oTable.ResizeColEnabled = 1; //writing
Dim oTable, nResize
Set oTable = pMe.Items("/Table")
nResize = oTable.ResizeColEnabled 'reading
oTable.ResizeColEnabled = 1 'writing