Packagemx.graphics
Classpublic class SolidColor
InheritanceSolidColor Inheritance Object
ImplementsIFill

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 = 1.0
The transparency of a color.
SolidColor
  color : uint = 0x000000
A color value.
SolidColor
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
Public Methods
 MethodDefined by
  
SolidColor(color:uint = 0x000000, alpha:Number = 1.0)
Constructor.
SolidColor
  
Starts the fill.
SolidColor
  
end(target:Graphics):void
Ends the fill.
SolidColor
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Property detail
alphaproperty
public var alpha:Number = 1.0

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

The default value is 1.0.

colorproperty 
public var color:uint = 0x000000

A color value.

Constructor detail
SolidColor()constructor
public function SolidColor(color:uint = 0x000000, alpha:Number = 1.0)

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, rc:Rectangle):void

Starts the fill.

Parameters
target:Graphics — The target Graphics object that is being filled.
 
rc: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.
end()method 
public function end(target:Graphics):void

Ends the fill.

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




 

Send me an e-mail when comments are added to this page | Comment Report

Current page: http://livedocs.adobe.com/flex/2/langref/mx/graphics/SolidColor.html