PaddingRight - property of the PmgNumber object
Description:
Right text padding (in pixels).
Syntax:
Long PaddingRight
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.PaddingRight;
// Reading from the property
oNumber.PaddingRight = 10;
// Writing into the property
Dim oNumber
Set oNumber = pMe.Items("/Nmb")
Dim nPadding
nPadding = oNumber.PaddingRight
' Reading from the property
oNumber.PaddingRight = 10
' Writing into the property