Pacote | mx.styles |
Classe | public class CSSCondition |
Herança | CSSCondition Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Elementos da API relacionados
Propriedade | Definido por | ||
---|---|---|---|
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | ||
kind : String [somente leitura]
The kind of condition this instance represents. | CSSCondition | ||
specificity : int [somente leitura]
Calculates the specificity of a conditional selector in a selector
chain. | CSSCondition | ||
value : String [somente leitura]
The value of this condition without any CSS syntax. | CSSCondition |
Método | Definido por | ||
---|---|---|---|
Constructor. | CSSCondition | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Determines whether this condition matches the given component. | CSSCondition | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Returns a String representation of this condition. | CSSCondition | ||
Retorna o valor primitivo do objeto especificado. | Object |
kind | propriedade |
specificity | propriedade |
specificity:int
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de 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).
Implementação
public function get specificity():int
value | propriedade |
value:String
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de 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.
Implementação
public function get value():String
CSSCondition | () | Construtor |
public function CSSCondition(kind:String, value:String)
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Constructor.
Parâmetroskind:String — The kind of condition. For valid values see the
CSSConditionKind enumeration.
| |
value:String — The condition value (without CSS syntax).
|
matchesStyleClient | () | método |
public function matchesStyleClient(object:IAdvancedStyleClient):Boolean
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Determines whether this condition matches the given component.
Parâmetros
object:IAdvancedStyleClient — The component to which the condition may apply.
|
Boolean — true if component is a match, otherwise false.
|
toString | () | método |
Wed Jun 13 2018, 11:10 AM Z