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 from the property
oTable.ResizeColEnabled = 1;
// Writing into the property
Dim oTable
Set oTable = pMe.Items("/Table")
Dim nResize
nResize = oTable.ResizeColEnabled
' Reading from the property
oTable.ResizeColEnabled = 1
' Writing into the property