Packagemx.graphics
Classpublic class SolidColor
InheritanceSolidColor Inheritance flash.events.EventDispatcher
Implements IFill

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Defines a representation for a color, including a color and an alpha value.

Default MXML Propertycolor

See also

mx.graphics.IFill


Public Properties
 PropertyDefined By
  alpha : Number
The transparency of a color.
SolidColor
  color : uint
A color value.
SolidColor
Public Methods
 MethodDefined By
  
SolidColor(color:uint = 0x000000, alpha:Number = 1.0)
Constructor.
SolidColor
  
begin(target:Graphics, targetBounds:Rectangle, targetOrigin:Point):void
Starts the fill.
SolidColor
  
end(target:Graphics):void
Ends the fill.
SolidColor
Property Detail
alphaproperty
alpha:Number

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

The transparency of a color. Possible values are 0.0 (invisible) through 1.0 (opaque).

The default value is 1.0.

This property can be used as the source for data binding.


Implementation
    public function get alpha():Number
    public function set alpha(value:Number):void
colorproperty 
color:uint

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

A color value.

This property can be used as the source for data binding.


Implementation
    public function get color():uint
    public function set color(value:uint):void
Constructor Detail
SolidColor()Constructor
public function SolidColor(color:uint = 0x000000, alpha:Number = 1.0)

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Constructor.

Parameters
color:uint (default = 0x000000) — Specifies the color. The default value is 0x000000 (black).
 
alpha:Number (default = 1.0) — Specifies the level of transparency. Valid values range from 0.0 (completely transparent) to 1.0 (completely opaque). The default value is 1.0.
Method Detail
begin()method
public function begin(target:Graphics, targetBounds:Rectangle, targetOrigin:Point):void

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Starts the fill.

Parameters

target:Graphics — The target Graphics object that is being filled.
 
targetBounds:Rectangle — The Rectangle object that defines the size of the fill inside the target. If the dimensions of the Rectangle are larger than the dimensions of the target, the fill is clipped. If the dimensions of the Rectangle are smaller than the dimensions of the target, the fill expands to fill the entire target.
 
targetOrigin:Point — The Point that defines the origin (0,0) of the shape in the coordinate system of target.

end()method 
public function end(target:Graphics):void

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Ends the fill.

Parameters

target:Graphics — The Graphics object that is being filled.