패키지 | 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:17 PM Z