Pacote | spark.components.supportClasses |
Classe | public class DropDownController |
Herança | DropDownController EventDispatcher Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Elementos da API relacionados
Propriedade | Definido por | ||
---|---|---|---|
closeOnResize : Boolean
When true, resizing the system manager
closes the drop down. | DropDownController | ||
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | ||
hitAreaAdditions : Vector.<DisplayObject>
A list of display objects to consider part of the hit area
of the drop down. | DropDownController | ||
isOpen : Boolean [somente leitura]
Contains true if the drop down is open. | DropDownController | ||
openButton : ButtonBase
A reference to the openButton skin part
of the drop-down component. | DropDownController | ||
rollOverOpenDelay : Number
Specifies the delay, in milliseconds, to wait for opening the drop down
when the anchor button is rolled over. | DropDownController | ||
systemManager : ISystemManager
A reference to the SystemManager used
for mouse tracking. | DropDownController |
Método | Definido por | ||
---|---|---|---|
Constructor. | DropDownController | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra um objeto de ouvinte de evento em um objeto EventDispatcher, de forma que o ouvinte receba a notificação de um evento. | EventDispatcher | ||
Close the drop down and dispatch a DropDownEvent.CLOSE event. | DropDownController | ||
Envia um evento para o fluxo de eventos. | EventDispatcher | ||
Verifica se o objeto EventDispatcher tem ouvintes registrados para um tipo específico de evento. | EventDispatcher | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Open the drop down and dispatch a DropdownEvent.OPEN event. | DropDownController | ||
Close the drop down if it is no longer in focus. | DropDownController | ||
Handles the keyboard user interactions. | DropDownController | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Remove um ouvinte do objeto EventDispatcher. | EventDispatcher | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Retorna o valor primitivo do objeto especificado. | Object | ||
Verifica se um ouvinte de evento está registrado nesse objeto EventDispatcher ou em qualquer um de seus ancestrais para o tipo de evento especificado. | EventDispatcher |
closeOnResize | propriedade |
closeOnResize:Boolean
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4.6 |
Versões de runtime: | AIR 3 |
When true
, resizing the system manager
closes the drop down.
For mobile applications, you can set this property
to false
so that the drop down stays open when the
page orientation changes.
O valor padrão é true.
Implementação
public function get closeOnResize():Boolean
public function set closeOnResize(value:Boolean):void
hitAreaAdditions | propriedade |
public var hitAreaAdditions:Vector.<DisplayObject>
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
A list of display objects to consider part of the hit area of the drop down. Mouse clicks within any component listed as an inclusion will not automatically close the drop down.
isOpen | propriedade |
openButton | propriedade |
openButton:ButtonBase
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
A reference to the openButton
skin part
of the drop-down component.
Implementação
public function get openButton():ButtonBase
public function set openButton(value:ButtonBase):void
rollOverOpenDelay | propriedade |
rollOverOpenDelay:Number
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Specifies the delay, in milliseconds, to wait for opening the drop down
when the anchor button is rolled over.
If set to NaN
, then the drop down opens on a click, not a rollover.
O valor padrão é NaN.
Implementação
public function get rollOverOpenDelay():Number
public function set rollOverOpenDelay(value:Number):void
systemManager | propriedade |
systemManager:ISystemManager
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
A reference to the SystemManager
used
for mouse tracking. if none is specified, the controller
will use the systemManager associated with the openButton.
Implementação
public function get systemManager():ISystemManager
public function set systemManager(value:ISystemManager):void
DropDownController | () | Construtor |
public function DropDownController()
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Constructor.
closeDropDown | () | método |
openDropDown | () | método |
public function openDropDown():void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Open the drop down and dispatch a DropdownEvent.OPEN
event.
processFocusOut | () | método |
public function processFocusOut(event:FocusEvent):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Close the drop down if it is no longer in focus.
Parâmetros
event:FocusEvent — The event object for the FOCUS_OUT event.
|
processKeyDown | () | método |
public function processKeyDown(event:KeyboardEvent):Boolean
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Handles the keyboard user interactions.
Parâmetros
event:KeyboardEvent — The event object from the keyboard event.
|
Boolean — Returns true if the keyCode was
recognized and handled.
|
Wed Jun 13 2018, 11:10 AM Z