| 패키지 | mx.automation |
| 인터페이스 | public interface IAutomationClass |
| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Flex 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
기타 예제
공용 속성
| 속성 | 정의 주체 | ||
|---|---|---|---|
| name : String [읽기 전용]
The class name. | IAutomationClass | ||
| propertyNameMap : Object [읽기 전용]
An Object containing a map to map a property name to descriptor. | IAutomationClass | ||
| superClassName : String [읽기 전용]
The name of the class's superclass. | IAutomationClass | ||
공용 메서드
| 메서드 | 정의 주체 | ||
|---|---|---|---|
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 | ||
속성 세부 정보
name | 속성 |
propertyNameMap | 속성 |
propertyNameMap:Object [읽기 전용] | 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Flex 3 |
| 런타임 버전: | 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];
구현
public function get propertyNameMap():ObjectsuperClassName | 속성 |
메서드 세부 정보
getDescriptorForEvent | () | 메서드 |
public function getDescriptorForEvent(event:Event):IAutomationEventDescriptor| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Flex 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
Returns an IAutomationEventDescriptor object
for the specified event object.
매개 변수
event:Event — The event for which the descriptor is required.
|
IAutomationEventDescriptor |
getDescriptorForEventByName | () | 메서드 |
public function getDescriptorForEventByName(eventName:String):IAutomationEventDescriptor| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Flex 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
Returns an IAutomationEventDescriptor object from the event's name.
매개 변수
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 | () | 메서드 |
public function getDescriptorForMethodByName(methodName:String):IAutomationMethodDescriptor| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Flex 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
Returns an IAutomationMethodDescriptorfrom object
from the method's name.
매개 변수
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 | () | 메서드 |
public function getPropertyDescriptors(objForInitialization:Object = null, forVerification:Boolean = true, forDescription:Boolean = true):Array| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Flex 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
Returns the list of properties this class supports.
매개 변수
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, 03:17 PM Z