套件 | mx.styles |
類別 | public final class CSSConditionKind |
繼承 | CSSConditionKind Object |
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
相關 API 元素
公用常數
常數 | 定義自 | ||
---|---|---|---|
CLASS : String = "class" [靜態]
A selector condition to match a component by styleName. | CSSConditionKind | ||
ID : String = "id" [靜態]
A selector condition to match a component by id. | CSSConditionKind | ||
PSEUDO : String = "pseudo" [靜態]
A selector condition to match a component by state (which may be
dynamic and change over time). | CSSConditionKind |
常數詳細資訊
CLASS | 常數 |
public static const CLASS:String = "class"
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
A selector condition to match a component by styleName. Examples: Button.special { ... } .special { ... }
ID | 常數 |
public static const ID:String = "id"
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
A selector condition to match a component by id. Examples: Button#special { ... } #special { ... }
PSEUDO | 常數 |
public static const PSEUDO:String = "pseudo"
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
A selector condition to match a component by state (which may be dynamic and change over time). Examples: Button:special { ... } :special { ... }
Tue Jun 12 2018, 03:47 PM Z