Package | mx.styles |
Class | public class CSSCondition |
Inheritance | CSSCondition Object |
Language Version: | ActionScript 3.0 |
Product Version: | Flex 4 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
Related API Elements
Property | Defined By | ||
---|---|---|---|
constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | ||
kind : String [read-only]
The kind of condition this instance represents. | CSSCondition | ||
specificity : int [read-only]
Calculates the specificity of a conditional selector in a selector
chain. | CSSCondition | ||
value : String [read-only]
The value of this condition without any CSS syntax. | CSSCondition |
Method | Defined By | ||
---|---|---|---|
Constructor. | CSSCondition | ||
Indicates whether an object has a specified property defined. | Object | ||
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | ||
Determines whether this condition matches the given component. | CSSCondition | ||
Indicates whether the specified property exists and is enumerable. | Object | ||
Sets the availability of a dynamic property for loop operations. | Object | ||
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | ||
Returns a String representation of this condition. | CSSCondition | ||
Returns the primitive value of the specified object. | Object |
kind | property |
specificity | property |
specificity:int
[read-only] Language Version: | ActionScript 3.0 |
Product Version: | Flex 4 |
Runtime Versions: | 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).
Implementation
public function get specificity():int
value | property |
value:String
[read-only] Language Version: | ActionScript 3.0 |
Product Version: | Flex 4 |
Runtime Versions: | 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.
Implementation
public function get value():String
CSSCondition | () | Constructor |
public function CSSCondition(kind:String, value:String)
Language Version: | ActionScript 3.0 |
Product Version: | Flex 4 |
Runtime Versions: | 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 | () | method |
public function matchesStyleClient(object:IAdvancedStyleClient):Boolean
Language Version: | ActionScript 3.0 |
Product Version: | Flex 4 |
Runtime Versions: | 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 | () | method |
Thu Dec 6 2018, 01:12 PM -08:00