Pacote | spark.accessibility |
Classe | public class PanelAccImpl |
Herança | PanelAccImpl AccImpl AccessibilityImplementation Object |
Subclasses | TitleWindowAccImpl |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
When a Spark Panel is created,
the accessibilityImplementation
property
of a special child Sprite is set to an instance of this class.
The Flash Player then uses this class to allow MSAA clients
such as screen readers to see and manipulate the Panel.
See the mx.accessibility.AccImpl and
flash.accessibility.AccessibilityImplementation classes
for background information about accessibility implementation
classes and MSAA.
Children
A Panel has no MSAA children. All children of the actual Panel are siblings of the Panel in the FlashPlayer's MSAA tree, because Flash Player does not support objects with accessibility implementations having children with their own accessibility implementations.
The PanelAccImpl is set as the accessibilityImplementation
of the titleDisplay
object because setting it on the Panel
itself would not allow the Panel's children to be exposed in MSAA.
Because of this an invisible rectangle is drawn in the
titleDisplay
making it the same size as the Panel as a whole
so that the MSAA Location is the bounding rectangle of the entire Panel.
Screen readers like JAWS rely on the MSAA Location to announce whether
some component is in the grouping since the MSAA structure is flat.
Role
The MSAA Role of a Panel is ROLE_SYSTEM_GROUPING.
Name
The MSAA Name of a Panel is, by default, the title that it displays.
To override this behavior, set the Panel's accessibilityName
property.
When the Name changes, a Panel dispatches the MSAA event EVENT_OBJECT_NAMECHANGE.
Description
The MSAA Description of a Panel is, by default, the empty string,
but you can set the Panel's accessibilityDescription
property.
State
The MSAA State of a Panel is always STATE_SYSTEM_NORMAL, indicating that no state flags are set.
Since the state does not change, a Panel does not dispatch the MSAA event EVENT_OBJECT_STATECHANGE.
Value
The MSAA Value of a Panel is always the empty string.
Location
The MSAA Location of a Panel is its bounding rectangle.
Default Action
A Panel does not have an MSAA DefaultAction .
Focus
A Panel does not accept focus.
Selection
A Panel does not support selection in the MSAA sense.
Método | Definido por | ||
---|---|---|---|
PanelAccImpl(master:UIComponent)
Constructor. | PanelAccImpl | ||
Um método IAccessible que executa a ação padrão associada ao componente que esta AccessibilityImplementation representa ou um do seus elementos filho. | AccessibilityImplementation | ||
Método de MSAA para retornar um DisplayObject ou Retângulo que especifica a caixa delimitadora de um elemento de filho no AccessibilityImplementation. | AccessibilityImplementation | ||
Método IAccessible para alterar a seleção no componente que esta AccessibilityImplementation representa. | AccessibilityImplementation | ||
[estático]
Enables accessibility in the Panel class. | PanelAccImpl | ||
Método de MSAA para retornar a ação de padrão do componente que este AccessibilityImplementation representa ou de um dos seus elementos de filho. | AccessibilityImplementation | ||
Método MSAA para retornar o ID do inteiro sem sinal do elemento filho, se houver, que este filho focaliza no componente. | AccessibilityImplementation | ||
Método de MSAA para retornar o nome do componente que este AccessibilityImplementation representa ou para um dos seus elementos de filho. | AccessibilityImplementation | ||
Método MSAA para retornar a função do sistema para o componente que esta AccessibilityImplementation representa ou um do seus elementos filho. | AccessibilityImplementation | ||
Método MSAA para retornar uma matriz que contém os IDs de todos os elementos filho que foram selecionados. | AccessibilityImplementation | ||
O método de IAccessible para retornar a estatal em tempo de execução atual do componente que este AccessibilityImplementation representa ou de um dos seus elementos de filho. | AccessibilityImplementation | ||
Método de MSAA para retornar o valor em tempo de execução do componente que este AccessibilityImplementation representa ou de um dos seus elementos de filho. | AccessibilityImplementation | ||
AccessibilityImplementation | |||
AccessibilityImplementation | |||
Retorna uma matriz que contém as IDs dos inteiros sem sinal de todos os elementos filho na AccessibilityImplementation. | AccessibilityImplementation | ||
[estático]
Method for supporting Form Accessibility. | AccImpl | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
[estático]
Returns true if an ancestor of the component has enabled set to false. | AccImpl | ||
retorna verdadeiro ou falso para indicar se um objeto de texto que especifica uma caixa delimitadora por um x, y, largura, e altura deve considerar-se um rótulo do componente que este AccessibilityImplementation representa. | AccessibilityImplementation | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
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 |
PanelAccImpl | () | Construtor |
public function PanelAccImpl(master:UIComponent)
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Constructor.
Parâmetrosmaster:UIComponent — The UIComponent instance that this AccImpl instance
is making accessible.
|
enableAccessibility | () | método |
public static function enableAccessibility():void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Enables accessibility in the Panel class.
This method is called by application startup code
that is autogenerated by the MXML compiler.
Afterwards, when instances of Panel are initialized,
the accessibilityImplementation
property
of a special first child Sprite will be set to an instance
of this class.
If the PanelAccImpl were attached to the Panel itself
the accessibility implementations of the Panel's children
would be ignored.
Wed Jun 13 2018, 11:10 AM Z