BackgroundStyleProperties.setBackgroundImageRepeat

Sets the background image repeat property. This is equivalent to the CSS background-repeat property.

Supported values:
ValueConstant
no-repeatControlConstants.IMAGE_NO_REPEAT
repeatControlConstants.IMAGE_REPEAT
repeat-xControlConstants.IMAGE_REPEAT-X
repeat-yControlConstants.IMAGE_REPEAT-Y

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

Examples:

 controls.PANEL1.backgroundImageRepeat = ControlConstants.IMAGE_REPEAT;
 controls.PANEL1.setBackgroundImagePosition(ControlConstants.IMAGE_REPEAT-X);
 

Parameters

java.lang.String  backgroundImageRepeat,