Paket | mx.automation |
Arabirim | public interface IAutomationClass |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Genel Özellikler
Özellik | Tanımlayan: | ||
---|---|---|---|
name : String [salt okunur]
The class name. | IAutomationClass | ||
propertyNameMap : Object [salt okunur]
An Object containing a map to map a property name to descriptor. | IAutomationClass | ||
superClassName : String [salt okunur]
The name of the class's superclass. | IAutomationClass |
Genel Yöntemler
Yöntem | Tanımlayan: | ||
---|---|---|---|
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 |
Özellik Ayrıntısı
name | özellik |
propertyNameMap | özellik |
propertyNameMap:Object
[salt okunur] Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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];
Uygulama
public function get propertyNameMap():Object
superClassName | özellik |
Yöntem Ayrıntısı
getDescriptorForEvent | () | yöntem |
public function getDescriptorForEvent(event:Event):IAutomationEventDescriptor
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns an IAutomationEventDescriptor
object
for the specified event object.
Parametreler
event:Event — The event for which the descriptor is required.
|
IAutomationEventDescriptor |
getDescriptorForEventByName | () | yöntem |
public function getDescriptorForEventByName(eventName:String):IAutomationEventDescriptor
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns an IAutomationEventDescriptor
object from the event's name.
Parametreler
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 | () | yöntem |
public function getDescriptorForMethodByName(methodName:String):IAutomationMethodDescriptor
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns an IAutomationMethodDescriptorfrom
object
from the method's name.
Parametreler
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 | () | yöntem |
public function getPropertyDescriptors(objForInitialization:Object = null, forVerification:Boolean = true, forDescription:Boolean = true):Array
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the list of properties this class supports.
Parametreler
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, 01:09 PM Z