ColorBorder - property of the PmgShape object
Description:
Color of drawn lines.
Syntax:
String ColorBorder
Note:
Property access
for read and write.
The default value of this property is defined in the "
Line color" configurator of this object.
The property returns or sets the
RGB String in the form
"#RRGGBB".
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oShape = pMe.Items("/Shape");
var sColorBorder = oShape.ColorBorder;
// Reading from the property
oShape.ColorBorder = "#808080";
// Writing into the property
Dim oShape
Set oShape = pMe.Items("/Shape")
Dim sColorBorder
sColorBorder = oShape.ColorBorder
' Reading from the property
oShape.ColorBorder = "#808080"
' Writing into the property