public class

CssColor

extends FillStrokeStyle
java.lang.Object
   ↳ com.google.gwt.core.client.JavaScriptObject
     ↳ com.google.gwt.canvas.dom.client.FillStrokeStyle
       ↳ com.google.gwt.canvas.dom.client.CssColor

Class Overview

CSS Color object.

Experimental API: This API is still under development and is subject to change.

To handle dev mode we must wrap JSO strings in an array. Therefore, when in dev mode, CssColor is actually an array with one element that is the JSO. In Production Mode, this is not needed.

Summary

[Expand]
Inherited Constants
From class com.google.gwt.canvas.dom.client.FillStrokeStyle
Protected Constructors
CssColor()
Public Methods
final static CssColor make(int r, int g, int b)
Sets the RGB color value.
final static CssColor make(String cssColor)
Creates a CssColor object.
final String value()
Returns the value of the CssColor, as a String.
[Expand]
Inherited Methods
From class com.google.gwt.canvas.dom.client.FillStrokeStyle
From class com.google.gwt.core.client.JavaScriptObject
From class java.lang.Object

Protected Constructors

protected CssColor ()

Public Methods

public static final CssColor make (int r, int g, int b)

Sets the RGB color value.

Parameters
r red, integer between 0 and 255
g green, integer between 0 and 255
b blue, integer between 0 and 255
Returns

public static final CssColor make (String cssColor)

Creates a CssColor object. Examples: blue, #ff0000, #f00, rgb(255,0,0)

Parameters
cssColor the CSS color
Returns

public final String value ()

Returns the value of the CssColor, as a String.

Returns
  • the value of the color, as a String.