Pacote | mx.graphics |
Classe | public class SolidColor |
Herança | SolidColor EventDispatcher Object |
Implementações | IFill |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Propriedade MXML padrãocolor
Mais exemplos
Elementos da API relacionados
Propriedades públicas
Propriedade | Definido por | ||
---|---|---|---|
alpha : Number
The transparency of a color. | SolidColor | ||
color : uint
A color value. | SolidColor | ||
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object |
Métodos públicos
Método | Definido por | ||
---|---|---|---|
Constructor. | SolidColor | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra um objeto de ouvinte de evento em um objeto EventDispatcher, de forma que o ouvinte receba a notificação de um evento. | EventDispatcher | ||
Starts the fill. | SolidColor | ||
Envia um evento para o fluxo de eventos. | EventDispatcher | ||
Ends the fill. | SolidColor | ||
Verifica se o objeto EventDispatcher tem ouvintes registrados para um tipo específico de evento. | EventDispatcher | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Remove um ouvinte do objeto EventDispatcher. | EventDispatcher | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Retorna o valor primitivo do objeto especificado. | Object | ||
Verifica se um ouvinte de evento está registrado nesse objeto EventDispatcher ou em qualquer um de seus ancestrais para o tipo de evento especificado. | EventDispatcher |
Eventos
Detalhes da propriedade
alpha | propriedade |
alpha:Number
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
The transparency of a color. Possible values are 0.0 (invisible) through 1.0 (opaque).
O valor padrão é 1.0.
Essa propriedade pode ser usada como a origem para o vínculo de dados. Quando essa propriedade é modificada, ela despacha o evento propertyChange
.
Implementação
public function get alpha():Number
public function set alpha(value:Number):void
color | propriedade |
color:uint
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
A color value.
Essa propriedade pode ser usada como a origem para o vínculo de dados. Quando essa propriedade é modificada, ela despacha o evento propertyChange
.
Implementação
public function get color():uint
public function set color(value:uint):void
Detalhes do construtor
SolidColor | () | Construtor |
public function SolidColor(color:uint = 0x000000, alpha:Number = 1.0)
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Constructor.
Parâmetroscolor: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.
|
Detalhes do método
begin | () | método |
public function begin(target:Graphics, targetBounds:Rectangle, targetOrigin:Point):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Starts the fill.
Parâmetros
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 | () | método |
Wed Jun 13 2018, 11:10 AM Z