| Package | com.addicted2flash.layout.core |
| Interface | public interface ILayoutObserver |
| Implementors | LayoutDebugger, UIPanel |
| Property | Defined by | ||
|---|---|---|---|
| acceptedLayoutEvents : int [read-only]
Return a bit pattern of events the observer is interested in.
| ILayoutObserver | ||
| Method | Defined by | ||
|---|---|---|---|
|
processLayoutEvent(type:int, c:IUIComponent):void
Updates observer with a specific event type.
| ILayoutObserver | ||
| acceptedLayoutEvents | property |
acceptedLayoutEvents:int [read-only]Return a bit pattern of events the observer is interested in.
Implementation public function get acceptedLayoutEvents():int
See also
public function get acceptedLayoutEvents(): int
{
return LayoutEvent.POSITION_CHANGED | LayoutEvent.SIZE_CHANGED;
}
| processLayoutEvent | () | method |
public function processLayoutEvent(type:int, c:IUIComponent):voidUpdates observer with a specific event type.
Parameterstype:int — type of event
|
|
c:IUIComponent — ILayoutComponent
|
See also