Paket | xd.core.axm.enterprise.view.skins |
Klasse | public class AXMEnterpriseSplitActionPopUpButtonSkin |
Vererbung | AXMEnterpriseSplitActionPopUpButtonSkin AXMSkin |
Implementiert | IBindingClient, IStateClient2 |
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10 |
Laufzeitversionen: | AIR 2.6, Flash Player 10.2 |
Standard-MXML-EigenschaftmxmlContent
Verwandte API-Elemente
Eigenschaft | Definiert von | ||
---|---|---|---|
arrowColor : uint the arrow color
| AXMEnterpriseSplitActionPopUpButtonSkin | ||
arrowDown : Group The down arrow graphic displayed in the anchor button. | AXMEnterpriseSplitActionPopUpButtonSkin | ||
arrowUp : Group The up arrow graphic displayed in the anchor button. | AXMEnterpriseSplitActionPopUpButtonSkin | ||
colorizeExclusions : Array [override] [schreibgeschützt]
Names of items that should not be colorized by the chromeColor style. | AXMEnterpriseSplitActionPopUpButtonSkin | ||
hostComponent : AXMButton
Eine Eigenschaft in strenger Typisierung, die auf die Komponente verweist, auf die diese Skin angewendet wird. | AXMEnterpriseSplitActionPopUpButtonSkin |
Methode | Definiert von | ||
---|---|---|---|
Constructor. | AXMEnterpriseSplitActionPopUpButtonSkin |
Methode | Definiert von | ||
---|---|---|---|
[override]
Finalizes the initialization of this component. | AXMEnterpriseSplitActionPopUpButtonSkin | ||
[override]
Draws the object and/or sizes and positions its children. | AXMEnterpriseSplitActionPopUpButtonSkin |
arrowColor | Eigenschaft |
public var arrowColor:uint
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10 |
Laufzeitversionen: | AIR 2.6, Flash Player 10.2 |
the arrow color
Diese Eigenschaft kann als Quelle für die Datenbindung verwendet werden. Beim Ändern dieser Eigenschaft wird das Bindable
-Ereignis ausgelöst.
arrowDown | Eigenschaft |
public var arrowDown:Group
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10 |
Laufzeitversionen: | AIR 2.6, Flash Player 10.2 |
The down arrow graphic displayed in the anchor button.
Diese Eigenschaft kann als Quelle für die Datenbindung verwendet werden. Beim Ändern dieser Eigenschaft wird das Bindable
-Ereignis ausgelöst.
arrowUp | Eigenschaft |
public var arrowUp:Group
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10 |
Laufzeitversionen: | AIR 2.6, Flash Player 10.2 |
The up arrow graphic displayed in the anchor button.
Diese Eigenschaft kann als Quelle für die Datenbindung verwendet werden. Beim Ändern dieser Eigenschaft wird das Bindable
-Ereignis ausgelöst.
colorizeExclusions | Eigenschaft |
colorizeExclusions:Array
[schreibgeschützt] [override] Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10 |
Laufzeitversionen: | 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.
Implementierung
override public function get colorizeExclusions():Array
hostComponent | Eigenschaft |
public var hostComponent:AXMButton
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10 |
Laufzeitversionen: | AIR 2.6, Flash Player 10.2 |
Eine Eigenschaft in strenger Typisierung, die auf die Komponente verweist, auf die diese Skin angewendet wird.
Diese Eigenschaft kann als Quelle für die Datenbindung verwendet werden. Beim Ändern dieser Eigenschaft wird das Bindable
-Ereignis ausgelöst.
AXMEnterpriseSplitActionPopUpButtonSkin | () | Konstruktor |
public function AXMEnterpriseSplitActionPopUpButtonSkin()
Constructor.
initializationComplete | () | Methode |
override protected function initializationComplete():void
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10 |
Laufzeitversionen: | 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 | () | Methode |
override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10 |
Laufzeitversionen: | 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.
Parameter
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.
|
Tue Jun 12 2018, 10:04 AM Z