BorderStyleProperties.setBorderStyle

Sets border style.

Supported values:
ValueConstant
NoneControlConstants.NONE
SolidControlConstants.BORDER_STYLE_SOLID
DottedControlConstants.BORDER_STYLE_DOTTED
DashedControlConstants.BORDER_STYLE_DASHED
DoubleControlConstants.BORDER_STYLE_DOUBLE
GrooveControlConstants.BORDER_STYLE_GROOVE
RidgedControlConstants.BORDER_STYLE_RIDGED

Setting a value of null removes any existing value for the property.

Note that for a border to be visible, a border width property and the borderColor property is also required.

Examples:

 controls.PANEL1.borderStyle = ControlConstants.BORDER_STYLE_SOLID;
 controls.PANEL1.borderWidth = "2px";
 controls.PANEL1.borderColor = "black";
 controls.TEXT1.setBorderStyle(ControlConstants.NONE);
 

Parameters

java.lang.String  borderStyle,