"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 for the border. For text fields, the following styles are available: BS_NONE(0): Normal border BS_3D(1): 3D display |
Description
Defining a border style (also existing as property) allows displaying text fields in 3D.
Example
The following examples set the border to "3D".
main()
{
this.borderStyle(BS_3D)
}
main()
{
setValue("", "borderStyle", 1);
}
Relates to
Text field