| Package | frocessing.color |
| Interface | public interface IColor |
| Subinterfaces | IFColor |
| Implementors | ColorHSV, ColorRGB |
| Property | Defined by | ||
|---|---|---|---|
| alpha : Number
色の 透明度(Alpha) 値を示します.
| IColor | ||
| alpha8 : uint
色の 透明度(Alpha) 値を 0~255 で示します.
| IColor | ||
| b : uint
色の 青(Blue) 値を示します.
| IColor | ||
| g : uint
色の 緑(Green) 値を示します.
| IColor | ||
| r : uint
色の 赤(Red) 値を示します.
| IColor | ||
| value : uint
24bit Color (0xRRGGBB) を示します.
| IColor | ||
| value32 : uint
32bit Color (0xAARRGGBB) を示します.
| IColor | ||
| alpha | property |
alpha:Number [read-write]色の 透明度(Alpha) 値を示します.
Implementation public function get alpha():Number
public function set alpha(value:Number):void
| alpha8 | property |
alpha8:uint [read-write]色の 透明度(Alpha) 値を 0~255 で示します.
Implementation public function get alpha8():uint
public function set alpha8(value:uint):void
| b | property |
b:uint [read-write]色の 青(Blue) 値を示します.
Implementation public function get b():uint
public function set b(value:uint):void
| g | property |
g:uint [read-write]色の 緑(Green) 値を示します.
Implementation public function get g():uint
public function set g(value:uint):void
| r | property |
r:uint [read-write]色の 赤(Red) 値を示します.
Implementation public function get r():uint
public function set r(value:uint):void
| value | property |
value:uint [read-write]24bit Color (0xRRGGBB) を示します.
Implementation public function get value():uint
public function set value(value:uint):void
| value32 | property |
value32:uint [read-write]32bit Color (0xAARRGGBB) を示します.
Implementation public function get value32():uint
public function set value32(value:uint):void