Grid - property of the PmgWTable object
Description:
Enable drawing grid of non-fixed cells.
Values:
true - Cell grid will be drawn
false - Cell grid will not be drawn
Note:
Property access
for read and write.
In order to make the modification visible after write, it is necessary to call the Draw method.
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 bGrid = oTable.Grid; //reading
oTable.Grid = true; //writing
Dim oTable, bGrid
Set oTable = pMe.Items("/Table")
bGrid = oTable.Grid 'reading
oTable.Grid = true 'writing