Pacote | mx.automation |
Interface | public interface IAutomationClass |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Mais exemplos
Propriedades públicas
Propriedade | Definido por | ||
---|---|---|---|
name : String [somente leitura]
The class name. | IAutomationClass | ||
propertyNameMap : Object [somente leitura]
An Object containing a map to map a property name to descriptor. | IAutomationClass | ||
superClassName : String [somente leitura]
The name of the class's superclass. | IAutomationClass |
Métodos públicos
Método | Definido por | ||
---|---|---|---|
Returns an IAutomationEventDescriptor object
for the specified event object. | IAutomationClass | ||
Returns an IAutomationEventDescriptor object from the event's name. | IAutomationClass | ||
Returns an IAutomationMethodDescriptorfrom object
from the method's name. | IAutomationClass | ||
getPropertyDescriptors(objForInitialization:Object = null, forVerification:Boolean = true, forDescription:Boolean = true):Array
Returns the list of properties this class supports. | IAutomationClass |
Detalhes da propriedade
name | propriedade |
propertyNameMap | propriedade |
propertyNameMap:Object
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
An Object containing a map to map a property name to descriptor. The following example uses this property:
var descriptor:IAutomationPropertyDescriptor = map[propertyNameMap];
Implementação
public function get propertyNameMap():Object
superClassName | propriedade |
Detalhes do método
getDescriptorForEvent | () | método |
public function getDescriptorForEvent(event:Event):IAutomationEventDescriptor
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Returns an IAutomationEventDescriptor
object
for the specified event object.
Parâmetros
event:Event — The event for which the descriptor is required.
|
IAutomationEventDescriptor |
getDescriptorForEventByName | () | método |
public function getDescriptorForEventByName(eventName:String):IAutomationEventDescriptor
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Returns an IAutomationEventDescriptor
object from the event's name.
Parâmetros
eventName:String — The event name for which the descriptor is required.
|
IAutomationEventDescriptor — The event descriptor for the name passed if one is available.
Otherwise null.
|
getDescriptorForMethodByName | () | método |
public function getDescriptorForMethodByName(methodName:String):IAutomationMethodDescriptor
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Returns an IAutomationMethodDescriptorfrom
object
from the method's name.
Parâmetros
methodName:String — The method name for which the descriptor is required.
|
IAutomationMethodDescriptor — The method descriptor for the name passed if one is available.
Otherwise, null.
|
getPropertyDescriptors | () | método |
public function getPropertyDescriptors(objForInitialization:Object = null, forVerification:Boolean = true, forDescription:Boolean = true):Array
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Returns the list of properties this class supports.
Parâmetros
objForInitialization:Object (default = null ) — Object which can be used to find the
ActionScript type of the properties.
| |
forVerification:Boolean (default = true ) — If true , indicates that properties used
for verification should be included in the return value.
| |
forDescription:Boolean (default = true ) — If true , indicates that properties used
for object identitication should be included in the return value.
|
Array — Array containing property descriptions.
|
Wed Jun 13 2018, 11:10 AM Z