BackColor - property of the PmgWTable object
Description:
Default background color of non-fixed table cells.
All non-fixed cells of the table have this color unless the color was set explicitly by the SetCellBackColor method.
Note:
Property access
for read and write. The preset value of this property is defined in the "
Background color:" configurator of this object.
The property returns/sets the RGB String in the form "#RRGGBB".
In order to make the modification visible after write, it is necessary to call the Draw method.
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTable = pMe.Items("/Table");
var sColor = oTable.BackColor; //reading
oTable.BackColor = "#ffff00"; //writing
Dim oTable, sColor
Set oTable = pMe.Items("/Table")
sColor = oTable.BackColor 'reading
oTable.BackColor = "#ffff00" 'writing