| Method | Defined By | ||
|---|---|---|---|
invalidateDisplayList():void
Calling this method results in a call to the components validateDisplayList() method before the display list is rendered. | IInvalidating | ||
invalidateProperties():void
Calling this method results in a call to the components validateProperties() method before the display list is rendered. | IInvalidating | ||
validateDisplayList():void
Validates the display list of the component by calling the updateDisplayList(). | IInvalidating | ||
validateNow():void
Validates the component immediately by calling validateProperties(), validateSizes(), and validateDisplayList() if necessary. | IInvalidating | ||
validateProperties():void
Validates the properties of the component by calling the commitProperties() method. | IInvalidating | ||
| invalidateDisplayList | () | method |
public function invalidateDisplayList():void
Calling this method results in a call to the components validateDisplayList() method before the display list is rendered.
For UIComponent classes this will result in the updateDisplayList() to be called.
| invalidateProperties | () | method |
public function invalidateProperties():void
Calling this method results in a call to the components validateProperties() method before the display list is rendered.
For UIComponent classes this will result in the commitProperties() to be called.
| validateDisplayList | () | method |
public function validateDisplayList():void| validateNow | () | method |
public function validateNow():void
Validates the component immediately by calling validateProperties(), validateSizes(), and validateDisplayList() if necessary.
| validateProperties | () | method |
public function validateProperties():void
Validates the properties of the component by calling the commitProperties() method.
You should not call this method directly as it is called by the framework for you.
You should also not subclass this method. Instead you should subclass the commitProperties() method.