WidthBorder - property of the PmgShape object
Description:
Width of drawn lines (in pixels).
Note:
Property access
for read and write.
The default value of this property is defined in the "
Line width" configurator of this object.
This property is also functional in
Web panels. Reading this property is functional in
Web panels only if this property has been modified previously - i.e. it is not possible to read the value that has been defined only in the "
Line width" configurator.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oShape = pMe.Items("/Shape");
var nWidthBorder = oShape.WidthBorder;
// Reading from the property
oShape.WidthBorder = 2;
// Writing into the property
Dim oShape
Set oShape = pMe.Items("/Shape")
Dim nWidthBorder
nWidthBorder = oShape.WidthBorder
' Reading from the property
oShape.WidthBorder = 2
' Writing into the property