パッケージ | xd.core.axm.enterprise.view.skins |
クラス | public class AXMEnterpriseQuietLargeDropDownListButtonSkin |
継承 | AXMEnterpriseQuietLargeDropDownListButtonSkin AXMSkin |
実装 | IBindingClient, IStateClient2 |
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
デフォルトの MXML プロパティmxmlContent
関連する API エレメント
プロパティ | 定義元 | ||
---|---|---|---|
arrow : Path The arrow graphic displayed in the anchor button. | AXMEnterpriseQuietLargeDropDownListButtonSkin | ||
arrowColor : uint the color of the arrow
| AXMEnterpriseQuietLargeDropDownListButtonSkin | ||
colorizeExclusions : Array [オーバーライド] [読み取り専用]
Names of items that should not be colorized by the chromeColor style. | AXMEnterpriseQuietLargeDropDownListButtonSkin | ||
hostComponent : AXMButton
このスキンの適用対象であるコンポーネントを参照する、厳密に型指定されたプロパティです。 | AXMEnterpriseQuietLargeDropDownListButtonSkin | ||
shadowAngle : Number the angle of the shadow
| AXMEnterpriseQuietLargeDropDownListButtonSkin |
メソッド | 定義元 | ||
---|---|---|---|
Constructor. | AXMEnterpriseQuietLargeDropDownListButtonSkin |
メソッド | 定義元 | ||
---|---|---|---|
[オーバーライド]
Finalizes the initialization of this component. | AXMEnterpriseQuietLargeDropDownListButtonSkin | ||
[オーバーライド]
Draws the object and/or sizes and positions its children. | AXMEnterpriseQuietLargeDropDownListButtonSkin |
arrow | プロパティ |
public var arrow:Path
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
The arrow graphic displayed in the anchor button.
このプロパティはデータバインディングのソースとして使用できます。 このプロパティを変更すると、 Bindable
イベントが送出されます。
arrowColor | プロパティ |
public var arrowColor:uint
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
the color of the arrow
このプロパティはデータバインディングのソースとして使用できます。 このプロパティを変更すると、 Bindable
イベントが送出されます。
colorizeExclusions | プロパティ |
colorizeExclusions:Array
[読み取り専用] [オーバーライド] 言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10 |
ランタイムバージョン: | 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.
実装
override public function get colorizeExclusions():Array
hostComponent | プロパティ |
public var hostComponent:AXMButton
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
このスキンの適用対象であるコンポーネントを参照する、厳密に型指定されたプロパティです。
このプロパティはデータバインディングのソースとして使用できます。 このプロパティを変更すると、 Bindable
イベントが送出されます。
shadowAngle | プロパティ |
public var shadowAngle:Number
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
the angle of the shadow
このプロパティはデータバインディングのソースとして使用できます。 このプロパティを変更すると、 Bindable
イベントが送出されます。
AXMEnterpriseQuietLargeDropDownListButtonSkin | () | コンストラクター |
public function AXMEnterpriseQuietLargeDropDownListButtonSkin()
Constructor.
initializationComplete | () | メソッド |
override protected function initializationComplete():void
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10 |
ランタイムバージョン: | 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 | () | メソッド |
override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10 |
ランタイムバージョン: | 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.
パラメーター
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:34 AM Z