| Pacote | xd.core.axm.enterprise.view.skins |
| Classe | public class AXMEnterpriseSplitActionButtonSkin |
| Herança | AXMEnterpriseSplitActionButtonSkin AXMSkin |
| Implementações | IBindingClient, IStateClient2 |
| Versão da linguagem: | ActionScript 3.0 |
| Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10 |
| Versões de runtime: | AIR 2.6, Flash Player 10.2 |
Propriedade MXML padrãomxmlContent
Elementos da API relacionados
| Propriedade | Definido por | ||
|---|---|---|---|
| colorizeExclusions : Array [substituir] [somente leitura]
Names of items that should not be colorized by the chromeColor style. | AXMEnterpriseSplitActionButtonSkin | ||
| hostComponent : AXMButton
A strongly typed property that references the component to which this skin is applied. | AXMEnterpriseSplitActionButtonSkin | ||
| labelDisplay : Label
A skin part that defines the label of the button. | AXMEnterpriseSplitActionButtonSkin | ||
| Método | Definido por | ||
|---|---|---|---|
Constructor. | AXMEnterpriseSplitActionButtonSkin | ||
| Método | Definido por | ||
|---|---|---|---|
[substituir]
Finalizes the initialization of this component. | AXMEnterpriseSplitActionButtonSkin | ||
[substituir]
Draws the object and/or sizes and positions its children. | AXMEnterpriseSplitActionButtonSkin | ||
colorizeExclusions | propriedade |
colorizeExclusions:Array [somente leitura] [substituir] | Versão da linguagem: | ActionScript 3.0 |
| Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10 |
| Versões de runtime: | AIR 2.6, Flash Player 10.2 |
Names of items that should not be colorized by the chromeColor style.
Only items of type DisplayObject or GraphicElement should be excluded. Items
of other types will be ignored.
Implementação
override public function get colorizeExclusions():ArrayhostComponent | propriedade |
public var hostComponent:AXMButton| Versão da linguagem: | ActionScript 3.0 |
| Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10 |
| Versões de runtime: | AIR 2.6, Flash Player 10.2 |
A strongly typed property that references the component to which this skin is applied.
Essa propriedade pode ser usada como a origem para o vínculo de dados. Quando essa propriedade é modificada, ela despacha o evento Bindable .
labelDisplay | propriedade |
public var labelDisplay:Label| Versão da linguagem: | ActionScript 3.0 |
| Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10 |
| Versões de runtime: | AIR 2.6, Flash Player 10.2 |
A skin part that defines the label of the button.
Essa propriedade pode ser usada como a origem para o vínculo de dados. Quando essa propriedade é modificada, ela despacha o evento Bindable .
AXMEnterpriseSplitActionButtonSkin | () | Construtor |
public function AXMEnterpriseSplitActionButtonSkin()Constructor.
initializationComplete | () | método |
override protected function initializationComplete():void| Versão da linguagem: | ActionScript 3.0 |
| Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10 |
| Versões de runtime: | AIR 2.6, Flash Player 10.2 |
Finalizes the initialization of this component.
This method is the last code that executes when you add a component
to a parent for the first time using addChild()
or addChildAt().
It handles some housekeeping related to dispatching
the initialize event.
If you are writing a component, you do not need
to override this method.
updateDisplayList | () | método |
override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void| Versão da linguagem: | ActionScript 3.0 |
| Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10 |
| Versões de runtime: | AIR 2.6, Flash Player 10.2 |
Draws the object and/or sizes and positions its children. This is an advanced method that you might override when creating a subclass of UIComponent.
You do not call this method directly. Flex calls the
updateDisplayList() method when the component is added to a container
using the addChild() method, and when the component's
invalidateDisplayList() method is called.
If the component has no children, this method
is where you would do programmatic drawing
using methods on the component's Graphics object
such as graphics.drawRect().
If the component has children, this method is where
you would call the move() and setActualSize()
methods on its children.
Components can do programmatic drawing even if
they have children. In doing either, use the
component's unscaledWidth and unscaledHeight
as its bounds.
It is important to use unscaledWidth and
unscaledHeight instead of the width
and height properties.
Parâmetros
unscaledWidth:Number — Specifies the width of the component, in pixels,
in the component's coordinates, regardless of the value of the
scaleX property of the component.
| |
unscaledHeight:Number — Specifies the height of the component, in pixels,
in the component's coordinates, regardless of the value of the
scaleY property of the component.
|
Wed Jun 13 2018, 11:10 AM Z