Pakket | mx.styles |
Klasse | public class CSSCondition |
Overerving | CSSCondition Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Verwante API-elementen
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
kind : String [alleen-lezen]
The kind of condition this instance represents. | CSSCondition | ||
specificity : int [alleen-lezen]
Calculates the specificity of a conditional selector in a selector
chain. | CSSCondition | ||
value : String [alleen-lezen]
The value of this condition without any CSS syntax. | CSSCondition |
Methode | Gedefinieerd door | ||
---|---|---|---|
Constructor. | CSSCondition | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Determines whether this condition matches the given component. | CSSCondition | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Returns a String representation of this condition. | CSSCondition | ||
Retourneert de primitieve waarde van het opgegeven object. | Object |
kind | eigenschap |
specificity | eigenschap |
specificity:int
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4 |
Runtimeversies: | 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).
Implementatie
public function get specificity():int
value | eigenschap |
value:String
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4 |
Runtimeversies: | 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.
Implementatie
public function get value():String
CSSCondition | () | Constructor |
public function CSSCondition(kind:String, value:String)
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Constructor.
Parameterskind:String — The kind of condition. For valid values see the
CSSConditionKind enumeration.
| |
value:String — The condition value (without CSS syntax).
|
matchesStyleClient | () | methode |
public function matchesStyleClient(object:IAdvancedStyleClient):Boolean
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 4 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Determines whether this condition matches the given component.
Parameters
object:IAdvancedStyleClient — The component to which the condition may apply.
|
Boolean — true if component is a match, otherwise false.
|
toString | () | methode |
Wed Jun 13 2018, 11:42 AM Z