Pakiet | mx.styles |
Klasa | public class CSSCondition |
Dziedziczenie | CSSCondition Object |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 4 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Powiązane elementy interfejsu API
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
constructor : Object
Odwołanie do obiektu klasy lub funkcji konstruktora, dotyczące danej instancji obiektu. | Object | ||
kind : String [tylko do odczytu]
The kind of condition this instance represents. | CSSCondition | ||
specificity : int [tylko do odczytu]
Calculates the specificity of a conditional selector in a selector
chain. | CSSCondition | ||
value : String [tylko do odczytu]
The value of this condition without any CSS syntax. | CSSCondition |
Metoda | Zdefiniowane przez | ||
---|---|---|---|
Constructor. | CSSCondition | ||
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | ||
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | ||
Determines whether this condition matches the given component. | CSSCondition | ||
Wskazuje, czy określona właściwość istnieje i jest przeliczalna. | Object | ||
Ustawia dostępność właściwości dynamicznej używanej w pętlach. | Object | ||
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych. | Object | ||
Returns a String representation of this condition. | CSSCondition | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object |
kind | właściwość |
kind:String
[tylko do odczytu] Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 4 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
The kind of condition this instance represents. Options are class, id and pseudo.
Implementacja
public function get kind():String
Powiązane elementy interfejsu API
specificity | właściwość |
specificity:int
[tylko do odczytu] Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 4 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Calculates the specificity of a conditional selector in a selector chain. The total specificity is used to determine the precedence when applying several matching style declarations. id conditions contribute 100 points, pseudo and class conditions each contribute 10 points. Selectors with a higher specificity override selectors of lower specificity. If selectors have equal specificity, the declaration order determines the precedence (i.e. the last one wins).
Implementacja
public function get specificity():int
value | właściwość |
value:String
[tylko do odczytu] Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 4 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
The value of this condition without any CSS syntax. To get a String
representation that includes CSS syntax, call the toString()
method.
Implementacja
public function get value():String
CSSCondition | () | Konstruktor |
public function CSSCondition(kind:String, value:String)
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 4 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Constructor.
Parametrykind:String — The kind of condition. For valid values see the
CSSConditionKind enumeration.
| |
value:String — The condition value (without CSS syntax).
|
matchesStyleClient | () | metoda |
public function matchesStyleClient(object:IAdvancedStyleClient):Boolean
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 4 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Determines whether this condition matches the given component.
Parametry
object:IAdvancedStyleClient — The component to which the condition may apply.
|
Boolean — true if component is a match, otherwise false.
|
toString | () | metoda |
Tue Jun 12 2018, 12:06 PM Z