PaddingLeft - property of the PmgNumber object
Description:
Left text padding (in pixels).
Note:
Property access
for read and write.
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oNumber = pMe.Items("/Nmb");
var nPadding = oNumber.PaddingLeft;
// Reading from the property
oNumber.PaddingLeft = 10;
// Writing into the property
Dim oNumber
Set oNumber = pMe.Items("/Nmb")
Dim nPadding
nPadding = oNumber.PaddingLeft
' Reading from the property
oNumber.PaddingLeft = 10
' Writing into the property