Packagefrocessing.color
Interfacepublic interface IColor
Implementors AbstractColorUpdater, ColorCMY, ColorHSL, ColorHSV, ColorRGB, FColor

色オブジェクトのインターフェイスです.



Public Properties
 PropertyDefined By
  a : Number
色の 透明度(Alpha) 値を示します.
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
Property Detail
aproperty
a:Number

色の 透明度(Alpha) 値を示します.


Implementation
    public function get a():Number
    public function set a(value:Number):void
bproperty 
b:uint

色の 青(Blue) 値を示します.


Implementation
    public function get b():uint
    public function set b(value:uint):void
gproperty 
g:uint

色の 緑(Green) 値を示します.


Implementation
    public function get g():uint
    public function set g(value:uint):void
rproperty 
r:uint

色の 赤(Red) 値を示します.


Implementation
    public function get r():uint
    public function set r(value:uint):void
valueproperty 
value:uint

24bit Color (0xRRGGBB) を示します.


Implementation
    public function get value():uint
    public function set value(value:uint):void
value32property 
value32:uint

32bit Color (0xAARRGGBB) を示します.


Implementation
    public function get value32():uint
    public function set value32(value:uint):void