Package com.ebasetech.xi.api.controls
Interface IndividualTabStateProperties
- All Superinterfaces:
TextStyleProperties
public interface IndividualTabStateProperties extends TextStyleProperties
The
IndividualTabStateProperties
interface represents Tab Control
styling properties for a specific tab state.- Since:
- V4.4
-
Method Summary
Methods inherited from interface com.ebasetech.xi.api.controls.TextStyleProperties
getLineHeight, getTextBold, getTextColor, getTextDecoration, getTextFont, getTextItalic, getTextSize, setLineHeight, setTextBold, setTextColor, setTextDecoration, setTextFont, setTextItalic, setTextSize
-
Method Details
-
getColor
java.lang.String getColor()Background color. This is equivalent to the CSS background-color property, and any valid value for this CSS property can be used when setting a value.- Since:
- V4.4
- See Also:
setColor(String)
-
setColor
void setColor(java.lang.String color)Sets the background color, this is equivalent to the CSS background-color property and any valid value for this CSS property can be used. Setting this property tonull
removes any configured value.Examples:
controls.TAB1.allState.color = "#808080"; controls.TAB1.selectedState.setColor("yellow");
- Since:
- V4.4
-