BackgroundStyleProperties.setBackgroundImagePosition

Sets the background image position.

Supported values:
ValueConstant
Top CenterControlConstants.IMAGE_POSITION_TOP_CENTER
Top LeftControlConstants.IMAGE_POSITION_TOP_LEFT
Top RightControlConstants.IMAGE_POSITION_TOP_RIGHT
Center CenterControlConstants.IMAGE_POSITION_CENTER_CENTER
Center LeftControlConstants.IMAGE_POSITION_CENTER_LEFT
Center RightControlConstants.IMAGE_POSITION_CENTER_RIGHT
Bottom CenterControlConstants.IMAGE_POSITION_BOTTOM_CENTER
Bottom LeftControlConstants.IMAGE_POSITION_BOTTOM_LEFT
Bottom RightControlConstants.IMAGE_POSITION_BOTTOM_RIGHT

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

Examples:

 controls.PANEL1.backgroundImagePosition = ControlConstants.IMAGE_POSITION_BOTTOM_RIGHT;
 controls.PANEL1.setBackgroundImagePosition(ControlConstants.IMAGE_POSITION_CENTER_CENTER);
 

Parameters

java.lang.String  backgroundImagePosition,