GridWidth - property of the PmfTableArea object
Description:
The property returns or sets the width of the line of the grid of selected table area.
If this property is not set, then it takes (inherits) its value from the
PmfTable.GridWidth property.
Syntax:
Variant GridWidth
Values:
0 - The table area grid will not be visible.
1 - The table grid will be displayed. The grid line width will be 1px.
inherit (default) - The property takes its value from the parent object.
Note:
Property access
for read and write.
This method is also functional in
Web panels.
Example1:
JavaScriptSelect and copy to clipboard
oTableArea.GridWidth = 0;
// Writing into the property
var nGridWidth = oTableArea.GridWidth;
// Reading from the property
oTableArea.GridWidth = "inherit";
// The property takes its value from the parent object