PaddingTop - property of the PmgWTable object
Description:
Creates free area for cell text at the top (in pixels).
Note:
Property access
for read and write.
The default value of this property is defined in the "
Up" configurator of this object.
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTable = pMe.Items("/Table");
var nPaddingTop = oTable.PaddingTop;
// Reading from the property
oTable.PaddingTop = 3;
// Writing into the property
Dim oTable
Set oTable = pMe.Items("/Table")
Dim nPaddingTop
nPaddingTop = oTable.PaddingTop
' Reading from the property
oTable.PaddingTop = 3
' Writing into the property