Pacchetto | mx.styles |
Classe | public class CSSCondition |
Ereditarietà | CSSCondition Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Elementi API correlati
Proprietà | Definito da | ||
---|---|---|---|
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
kind : String [sola lettura]
The kind of condition this instance represents. | CSSCondition | ||
specificity : int [sola lettura]
Calculates the specificity of a conditional selector in a selector
chain. | CSSCondition | ||
value : String [sola lettura]
The value of this condition without any CSS syntax. | CSSCondition |
Metodo | Definito da | ||
---|---|---|---|
Constructor. | CSSCondition | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Determines whether this condition matches the given component. | CSSCondition | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Returns a String representation of this condition. | CSSCondition | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
kind | proprietà |
specificity | proprietà |
specificity:int
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | 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).
Implementazione
public function get specificity():int
value | proprietà |
value:String
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | 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.
Implementazione
public function get value():String
CSSCondition | () | Funzione di costruzione |
public function CSSCondition(kind:String, value:String)
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Constructor.
Parametrikind:String — The kind of condition. For valid values see the
CSSConditionKind enumeration.
| |
value:String — The condition value (without CSS syntax).
|
matchesStyleClient | () | metodo |
public function matchesStyleClient(object:IAdvancedStyleClient):Boolean
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Determines whether this condition matches the given component.
Parametri
object:IAdvancedStyleClient — The component to which the condition may apply.
|
Boolean — true if component is a match, otherwise false.
|
toString | () | metodo |
Tue Jun 12 2018, 02:44 PM Z