Pacote | mx.core |
Classe | public class DesignLayer |
Herança | DesignLayer EventDispatcher Object |
Implementações | IMXMLObject |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
visible
and alpha property
that when set will propagate to the associated layer children.
Propriedade | Definido por | ||
---|---|---|---|
alpha : Number
The alpha for this design layer instance, between 0.0 and 1.0. | DesignLayer | ||
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | ||
effectiveAlpha : Number [somente leitura]
Property that returns the effective alpha, between 0.0 and 1.0,
of this design layer. | DesignLayer | ||
effectiveVisibility : Boolean [somente leitura]
Returns the effective visibility of this design layer. | DesignLayer | ||
id : String
ID of the layer component. | DesignLayer | ||
numLayers : int [somente leitura]
The number of DesignLayer children directly parented by this layer. | DesignLayer | ||
parent : DesignLayer [somente leitura]
This layer's parent layer. | DesignLayer | ||
visible : Boolean
The visibility for this design layer instance. | DesignLayer |
Método | Definido por | ||
---|---|---|---|
Constructor. | DesignLayer | ||
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 | ||
Adds a DesignLayer child to this layer. | DesignLayer | ||
Envia um evento para o fluxo de eventos. | EventDispatcher | ||
Returns the DesignLayer child at the specified index. | DesignLayer | ||
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 | ||
Called after the implementing object has been created and all
component properties specified on the MXML tag have been initialized. | DesignLayer | ||
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 | ||
Removes a DesignLayer child from this layer. | DesignLayer | ||
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 |
Evento | Resumo | Definido por | ||
---|---|---|---|---|
[transmissão de evento] Despachado quando o Flash Player ou o aplicativo do AIR ganha o foco do sistema operacional e está se tornando inativo. | EventDispatcher | |||
[transmissão de evento] Despachado quando o Flash Player ou o aplicativo do AIR perde o foco do sistema operacional e está se tornando inativo. | EventDispatcher | |||
Dispatched by the layer when either effectiveVisibility or effectiveAlpha changes. | DesignLayer |
alpha | propriedade |
alpha:Number
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
The alpha for this design layer instance, between 0.0 and 1.0.
When updated, the appropriate change event for effectiveAlpha
will be dispatched to all layerPropertyChange
listeners
for this layer, as well as those of affected descendant layers if any.
O valor padrão é 1.0.
Implementação
public function get alpha():Number
public function set alpha(value:Number):void
effectiveAlpha | propriedade |
effectiveAlpha:Number
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Property that returns the effective alpha, between 0.0 and 1.0, of this design layer. This value multiplies the alpha of this layer by the alpha of any ancestor layers.
O valor padrão é 1.0.
Implementação
public function get effectiveAlpha():Number
effectiveVisibility | propriedade |
effectiveVisibility:Boolean
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Returns the effective visibility of this design layer. This value takes into consideration the visibility of this layer and any ancestor layers.
O valor padrão é true.
Implementação
public function get effectiveVisibility():Boolean
id | propriedade |
id:String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
ID of the layer component. This value becomes the instance name of the layer and as such, should not contain any white space or special characters.
Implementação
public function get id():String
public function set id(value:String):void
numLayers | propriedade |
parent | propriedade |
parent:DesignLayer
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
This layer's parent layer.
O valor padrão é null.
Implementação
public function get parent():DesignLayer
visible | propriedade |
visible:Boolean
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
The visibility for this design layer instance.
When updated, the appropriate change event for effectiveVisibility
will be dispatched to all layerPropertyChange
listeners for
this layer, as well as those of affected descendant layers if any.
O valor padrão é true.
Implementação
public function get visible():Boolean
public function set visible(value:Boolean):void
DesignLayer | () | Construtor |
public function DesignLayer()
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Constructor.
addLayer | () | método |
public function addLayer(value:DesignLayer):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Adds a DesignLayer child to this layer.
Parâmetros
value:DesignLayer — The layer child to add.
|
getLayerAt | () | método |
public function getLayerAt(index:int):DesignLayer
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Returns the DesignLayer child at the specified index.
Note that the order of DesignLayer children is insignificant.
The getLayerAt
method is meant to be used in
conjunction with numLayers to iterate over the child list.
Parâmetros
index:int — The 0-based index of a DesignLayer child.
|
DesignLayer — The specified DesignLayer child if index is between
0 and numLayers - 1. Returns null
if the index is invalid.
|
Elementos da API relacionados
initialized | () | método |
public function initialized(document:Object, id:String):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Called after the implementing object has been created and all component properties specified on the MXML tag have been initialized.
Parâmetros
document:Object — The MXML document that created this object.
| |
id:String — The identifier used by document to refer
to this object.
If the object is a deep property on document ,
id is null.
|
removeLayer | () | método |
public function removeLayer(value:DesignLayer):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Removes a DesignLayer child from this layer.
Parâmetros
value:DesignLayer — The layer child to remove.
|
layerPropertyChange | Evento |
mx.events.PropertyChangeEvent
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Dispatched by the layer when either effectiveVisibility
or
effectiveAlpha
changes.
Wed Jun 13 2018, 11:10 AM Z