StartWidth - property of the PmgWTable object
Description:
Default column width.
The property can be set any time while working with the table.
All table columns have this width, unless the width has been set explicitly by the
SetColWidth method.
Note:
Property access
for read and write.
The property can also be set by the
Dim method.
The default value is 50.
This property is also functional in
Web panels. But here the change at any time is not functional. For this case it is better to use the
SetColWidth method.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTable = pMe.Items("/Table");
var nWidth = oTable.StartWidth;
// Reading from the property
oTable.StartWidth = 80;
// Writing into the property
Dim oTable
Set oTable = pMe.Items("/Table")
Dim nWidth
nWidth = oTable.StartWidth
' Reading from the property
oTable.StartWidth = 80
' Writing into the property