PaddingLeft - property of the PmgString 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 oString = pMe.Items("/Nmb");
var nPadding = oString.PaddingLeft;
// Reading from the property
oString.PaddingLeft = 10;
// Writing into the property
Dim oString
Set oString = pMe.Items("/Nmb")
Dim nPadding
nPadding = oString.PaddingLeft
' Reading from the property
oString.PaddingLeft = 10
' Writing into the property