BorderType - property of the PmgBox object
Description:
Type of the box border.
Values:
0 - 3DUp
1 - 3DDown
2 - Outline
Note:
Property access
for read and write. The preset 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
oBox.BorderType = 2; //writing
Dim oBox, nBorderType
Set oBox = pMe.Items("/Box")
nBorderType = oBox.BorderType 'reading
oBox.BorderType = 2 'writing