Package com.orchestranetworks.ui
Class UITableCellStyleHandler.BackgroundRepeat
- java.lang.Object
-
- com.orchestranetworks.ui.UITableCellStyleHandler.BackgroundRepeat
-
- Enclosing class:
- UITableCellStyleHandler
public static final class UITableCellStyleHandler.BackgroundRepeat extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static UITableCellStyleHandler.BackgroundRepeat
NO_REPEAT
The background image will not be repeated.static UITableCellStyleHandler.BackgroundRepeat
REPEAT
The background image will be repeated both vertically and horizontally; this is default.static UITableCellStyleHandler.BackgroundRepeat
REPEAT_X
The background image will only be repeated horizontally.static UITableCellStyleHandler.BackgroundRepeat
REPEAT_Y
The background image will only be repeated vertically.
-
-
-
Field Detail
-
REPEAT
public static final UITableCellStyleHandler.BackgroundRepeat REPEAT
The background image will be repeated both vertically and horizontally; this is default.
-
REPEAT_X
public static final UITableCellStyleHandler.BackgroundRepeat REPEAT_X
The background image will only be repeated horizontally.
-
REPEAT_Y
public static final UITableCellStyleHandler.BackgroundRepeat REPEAT_Y
The background image will only be repeated vertically.
-
NO_REPEAT
public static final UITableCellStyleHandler.BackgroundRepeat NO_REPEAT
The background image will not be repeated.
-
-