BorderStyleProperties.setRightBorderWidth

Sets the right border width, overriding property borderWidth. This is equivalent to the CSS border-right-width property, and any valid value for this CSS property can be used when setting a value. Setting this property to null removes any existing value.

Note that for a border to be visible, the borderStyle and borderColor properties are also required.

Examples:

 controls.PANEL1.rightBorderWidth = "2px";
 controls.PANEL1.borderStyle = ControlConstants.BORDER_STYLE_SOLID;
 controls.PANEL1.borderColor = "black";
 controls.TEXT1.setRightBorderWidth("medium");
 

Parameters

java.lang.String  rightBorderWidth,