Pacote | mx.automation |
Interface | public interface IAutomationMethodDescriptor |
Implementadores | AutomationMethodDescriptor |
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 name of the method. | IAutomationMethodDescriptor | ||
returnType : String [somente leitura]
The return type of the method. | IAutomationMethodDescriptor |
Métodos públicos
Método | Definido por | ||
---|---|---|---|
Returns an Array of argument descriptors for this method. | IAutomationMethodDescriptor | ||
Encodes an automation event arguments into an Array. | IAutomationMethodDescriptor | ||
Decodes an argument array and invokes a method. | IAutomationMethodDescriptor |
Detalhes da propriedade
name | propriedade |
returnType | propriedade |
Detalhes do método
getArgDescriptors | () | método |
public function getArgDescriptors(obj:IAutomationObject):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 an Array of argument descriptors for this method.
Parâmetros
obj:IAutomationObject — Instance of the IAutomationObject that
supports this method.
|
Array — Array of argument descriptors for this method.
|
record | () | método |
public function record(target:IAutomationObject, event:Event):Array
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Encodes an automation event arguments into an Array. Not all method descriptors support recording.
Parâmetros
target:IAutomationObject — Automation event that is being recorded.
| |
event:Event |
Array — Array of argument descriptors.
|
replay | () | método |
public function replay(target:IAutomationObject, args:Array):Object
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Decodes an argument array and invokes a method.
Parâmetros
target:IAutomationObject — Automation object to replay the method on.
| |
args:Array — Array of argument values and descriptors to
be used to invoke the method.
|
Object — Whatever the method invoked returns.
|
Wed Jun 13 2018, 11:10 AM Z