Pacotemx.styles
Interfacepublic interface ISimpleStyleClient
ImplementorsProgrammaticSkin, UIComponent, UITextField

This interface describes the properties and methods that an object must implement so that it can participate in the style subsystem. This interface is intended to be used by classes that obtain their style values from other objects rather than through locally set values and type selectors. This interface is implemented by ProgrammaticSkin.

Veja também

mx.styles.IStyleClient
mx.styles.CSSStyleDeclaration


Propriedades Públicas
 PropriedadeDefinido por
  styleName : Object
The source of this object's style values.
ISimpleStyleClient
Métodos Públicos
 MétodoDefinido por
  
styleChanged(styleProp:String):void
Called when the value of a style property is changed.
ISimpleStyleClient
Detalhes da propriedade
styleNamepropriedade
styleName:Object  [read-write]

The source of this object's style values. The value of styleName may be one of three possible types: - A String, such as "headerStyle". The string names a class selector defined in a CSS style sheet. - A CSSStyleDeclaration, such as StyleManager.getStyleDeclaration(".headerStyle"). - A UIComponent. The object implementing this interface inherits all the style values from the referenced UIComponent.


Implementação
    public function get styleName():Object
    public function set styleName(value:Object):void
Detalhes do método
styleChanged()método
public function styleChanged(styleProp:String):void

Called when the value of a style property is changed.

Parâmetros

styleProp:String — The name of the style property that changed.