Packagemx.styles
Interfacepublic interface ISimpleStyleClient
Implementors ProgrammaticSkin, StyleableTextField, UIFTETextField, UITextField

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

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.

See also

mx.styles.IStyleClient
mx.styles.CSSStyleDeclaration


Public Properties
 PropertyDefined By
  styleName : Object
The source of this object's style values.
ISimpleStyleClient
Public Methods
 MethodDefined By
  
styleChanged(styleProp:String):void
Called when the value of a style property is changed.
ISimpleStyleClient
Property Detail
styleNameproperty
styleName:Object

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

The source of this object's style values. The value of the styleName property can be one of three possible types:


Implementation
    public function get styleName():Object
    public function set styleName(value:Object):void
Method Detail
styleChanged()method
public function styleChanged(styleProp:String):void

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Called when the value of a style property is changed.

Parameters

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