| Package | com.esri.aws.awx.widget |
| Interface | public interface IWidgetContainer extends flash.events.IEventDispatcher |
| Implementors | BaseWidgetContainer |
| Property | Defined by | ||
|---|---|---|---|
| numWidgets : int [read-only]
Number of widgets in widget container.
| IWidgetContainer | ||
| Method | Defined by | ||
|---|---|---|---|
|
Adds a widget to widget container.
| IWidgetContainer | ||
|
addWidgetAt(widget:IWidget, index:int):void
Adds a widget to widget container (at a specific index).
| IWidgetContainer | ||
|
getAllWidgets():Array
Returns an array with all the widgets in the widget container.
| IWidgetContainer | ||
|
removeAllWidgets():void
Removes all widgets in the widget container.
| IWidgetContainer | ||
|
removeWidget(widget:IWidget):void
Removes a widget from widget container.
| IWidgetContainer | ||
|
removeWidgetAt(index:int):IWidget
Removes widget from widget container (using index).
| IWidgetContainer | ||
| numWidgets | property |
numWidgets:int [read-only]Number of widgets in widget container.
Implementation public function get numWidgets():int
| addWidget | () | method |
public function addWidget(widget:IWidget):voidAdds a widget to widget container.
Parameterswidget:IWidget |
| addWidgetAt | () | method |
public function addWidgetAt(widget:IWidget, index:int):voidAdds a widget to widget container (at a specific index).
Parameterswidget:IWidget |
|
index:int |
| getAllWidgets | () | method |
public function getAllWidgets():ArrayReturns an array with all the widgets in the widget container.
ReturnsArray |
| removeAllWidgets | () | method |
public function removeAllWidgets():voidRemoves all widgets in the widget container.
| removeWidget | () | method |
public function removeWidget(widget:IWidget):voidRemoves a widget from widget container.
Parameterswidget:IWidget |
| removeWidgetAt | () | method |
public function removeWidgetAt(index:int):IWidgetRemoves widget from widget container (using index).
Parametersindex:int |
IWidget |