Paket | mx.styles |
Klass | public class CSSCondition |
Arv | CSSCondition Object |
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 4 |
Körningsmiljöversioner: | Flash Player 10, AIR 1.5 |
Relaterade API-element
Egenskap | Definieras med | ||
---|---|---|---|
constructor : Object
En referens till klassobjektet eller konstruktorfunktionen för en given objektinstans. | Object | ||
kind : String [skrivskyddad]
The kind of condition this instance represents. | CSSCondition | ||
specificity : int [skrivskyddad]
Calculates the specificity of a conditional selector in a selector
chain. | CSSCondition | ||
value : String [skrivskyddad]
The value of this condition without any CSS syntax. | CSSCondition |
Metod | Definieras med | ||
---|---|---|---|
Constructor. | CSSCondition | ||
Anger om det finns en egenskap angiven för ett objekt. | Object | ||
Anger om en instans av klassen Object finns i prototypkedjan för objektet som anges som parameter. | Object | ||
Determines whether this condition matches the given component. | CSSCondition | ||
Anger om den angivna egenskapen finns och är uppräkningsbar. | Object | ||
Anger tillgänglighet för en dynamisk egenskap för slingåtgärder. | Object | ||
Returnerar det här objektets strängrepresentation, formaterad i enlighet med språkspecifika konventioner. | Object | ||
Returns a String representation of this condition. | CSSCondition | ||
Returnerar det angivna objektets primitiva värde. | Object |
kind | egenskap |
specificity | egenskap |
specificity:int
[skrivskyddad] Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 4 |
Körningsmiljöversioner: | 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).
Implementering
public function get specificity():int
value | egenskap |
value:String
[skrivskyddad] Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 4 |
Körningsmiljöversioner: | 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.
Implementering
public function get value():String
CSSCondition | () | Konstruktor |
public function CSSCondition(kind:String, value:String)
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 4 |
Körningsmiljöversioner: | Flash Player 10, AIR 1.5 |
Constructor.
Parametrarkind:String — The kind of condition. For valid values see the
CSSConditionKind enumeration.
| |
value:String — The condition value (without CSS syntax).
|
matchesStyleClient | () | metod |
public function matchesStyleClient(object:IAdvancedStyleClient):Boolean
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 4 |
Körningsmiljöversioner: | Flash Player 10, AIR 1.5 |
Determines whether this condition matches the given component.
Parametrar
object:IAdvancedStyleClient — The component to which the condition may apply.
|
Boolean — true if component is a match, otherwise false.
|
toString | () | metod |
Tue Jun 12 2018, 01:40 PM Z