BorderType - property of the PmgBox object
Description:
Type of the box border.
Note:
Property access
for read and write.
The default value of this property is defined in the "
Border type" configurator of this object.
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oBox = pMe.Items("/Box");
var nBorderType = oBox.BorderType;
// Reading from the property
oBox.BorderType = 2;
// Writing into the property
Dim oBox
Set oBox = pMe.Items("/Box")
Dim nBorderType
nBorderType = oBox.BorderType
' Reading from the property
oBox.BorderType = 2
' Writing into the property