"borderStyle"

Defines the used border style (normal, 3D).

Synopsis

setValue(string shape, "borderStyle", int style);

getValue(string shape, "borderStyle", int style);

shape.editable(int style);

Parameter

Parameter Description
shape Name of the object
style

Used style of the border. For buttons are available:

BS_NONE(0): Normal border

BS_3D(1): 3D display

Description

Defining a border style (also existing as property) allows a 3D display of buttons.

Example

The following examples set the border to "3D".

main()
{
  this.borderStyle(BS_3D);
}
main()
{
  setValue("", "borderStyle", 1);
}
Figure 1. Border Style 3D
Figure 2. Normal Border

Assignment

Button