Package | com.adobe.csxs.types |
Class | public class UIColor |
Property | Defined by | ||
---|---|---|---|
antiAliasLevel : String
Retrieves the level of anti-aliasing.
| UIColor | ||
color : *
Retrieves the color object containing the specific color information.
| UIColor | ||
type : String
Retrieves the color type.
| UIColor |
Method | Defined by | ||
---|---|---|---|
UIColor(type:String = "none", antiAliasLevel:String = "none", color:*)
Creates the color object.
| UIColor | ||
toString():String
Creates a string that contains all the properties of this object.
| UIColor |
antiAliasLevel | property |
antiAliasLevel:String
[read-write]Retrieves the level of anti-aliasing.
Implementation public function get antiAliasLevel():String
public function set antiAliasLevel(value:String):void
See also
color | property |
color:*
[read-write]Retrieves the color object containing the specific color information.
Implementation public function get color():*
public function set color(value:*):void
See also
type | property |
type:String
[read-write]Retrieves the color type.
Implementation public function get type():String
public function set type(value:String):void
See also
UIColor | () | constructor |
public function UIColor(type:String = "none", antiAliasLevel:String = "none", color:*)
Creates the color object.
Parameterstype:String (default = "none ") — The color type constant, one of "rgb" or "gradient".
|
|
antiAliasLevel:String (default = "none ") — The anti-alias level constant.
|
|
color:* — A color object containing specific color information.
|
See also
toString | () | method |
public function toString():String
Creates a string that contains all the properties of this object.
ReturnsString — The properties string.
|