Paket | mx.styles |
Sınıf | public class CSSCondition |
Miras Alma | CSSCondition Object |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 1.5 |
İlgili API Öğeleri
Özellik | Tanımlayan: | ||
---|---|---|---|
constructor : Object
Belirli bir nesne örneği için sınıf nesnesine veya yapıcı işlevine bir başvuru. | Object | ||
kind : String [salt okunur]
The kind of condition this instance represents. | CSSCondition | ||
specificity : int [salt okunur]
Calculates the specificity of a conditional selector in a selector
chain. | CSSCondition | ||
value : String [salt okunur]
The value of this condition without any CSS syntax. | CSSCondition |
Yöntem | Tanımlayan: | ||
---|---|---|---|
Constructor. | CSSCondition | ||
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | ||
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | ||
Determines whether this condition matches the given component. | CSSCondition | ||
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | ||
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | ||
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | ||
Returns a String representation of this condition. | CSSCondition | ||
Belirtilen nesnenin temel değerini döndürür. | Object |
kind | özellik |
specificity | özellik |
specificity:int
[salt okunur] Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4 |
Çalışma Zamanı Sürümleri: | 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).
Uygulama
public function get specificity():int
value | özellik |
value:String
[salt okunur] Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4 |
Çalışma Zamanı Sürümleri: | 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.
Uygulama
public function get value():String
CSSCondition | () | Yapıcı |
public function CSSCondition(kind:String, value:String)
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 1.5 |
Constructor.
Parametrelerkind:String — The kind of condition. For valid values see the
CSSConditionKind enumeration.
| |
value:String — The condition value (without CSS syntax).
|
matchesStyleClient | () | yöntem |
public function matchesStyleClient(object:IAdvancedStyleClient):Boolean
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 1.5 |
Determines whether this condition matches the given component.
Parametreler
object:IAdvancedStyleClient — The component to which the condition may apply.
|
Boolean — true if component is a match, otherwise false.
|
toString | () | yöntem |
Tue Jun 12 2018, 01:09 PM Z