| Pakiet | mx.automation |
| Interfejs | public interface IAutomationClass |
| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Flex 3 |
| Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Właściwości publiczne
| Właściwość | Zdefiniowane przez | ||
|---|---|---|---|
| name : String [tylko do odczytu]
The class name. | IAutomationClass | ||
| propertyNameMap : Object [tylko do odczytu]
An Object containing a map to map a property name to descriptor. | IAutomationClass | ||
| superClassName : String [tylko do odczytu]
The name of the class's superclass. | IAutomationClass | ||
Metody publiczne
| Metoda | Zdefiniowane przez | ||
|---|---|---|---|
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 | ||
Szczegół właściwości
name | właściwość |
propertyNameMap | właściwość |
propertyNameMap:Object [tylko do odczytu] | Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Flex 3 |
| Wersje środowiska wykonawczego: | 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];
Implementacja
public function get propertyNameMap():ObjectsuperClassName | właściwość |
Szczegół metody
getDescriptorForEvent | () | metoda |
public function getDescriptorForEvent(event:Event):IAutomationEventDescriptor| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Flex 3 |
| Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns an IAutomationEventDescriptor object
for the specified event object.
Parametry
event:Event — The event for which the descriptor is required.
|
IAutomationEventDescriptor |
getDescriptorForEventByName | () | metoda |
public function getDescriptorForEventByName(eventName:String):IAutomationEventDescriptor| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Flex 3 |
| Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns an IAutomationEventDescriptor object from the event's name.
Parametry
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 | () | metoda |
public function getDescriptorForMethodByName(methodName:String):IAutomationMethodDescriptor| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Flex 3 |
| Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns an IAutomationMethodDescriptorfrom object
from the method's name.
Parametry
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 | () | metoda |
public function getPropertyDescriptors(objForInitialization:Object = null, forVerification:Boolean = true, forDescription:Boolean = true):Array| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Flex 3 |
| Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns the list of properties this class supports.
Parametry
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.
|
Tue Jun 12 2018, 12:06 PM Z