toCssValue method
To css color value.
Implementation
String toCssValue()
{
if (isEmpty) {
// Empty is transparent.
return EMPTY_COLOR_CSSVALUE;
}
else {
return toHtmlHexTriplet();
}
}
To css color value.
String toCssValue()
{
if (isEmpty) {
// Empty is transparent.
return EMPTY_COLOR_CSSVALUE;
}
else {
return toHtmlHexTriplet();
}
}