| Pakiet | com.adobe.mosaic.om.interfaces |
| Interfejs | public interface ILayout |
| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Wersje środowiska wykonawczego: | AIR 2.6, Flash Player 10.2 |
ILayout interface provides the interface for describing the layout of a container.
Właściwości publiczne
| Właściwość | Zdefiniowane przez | ||
|---|---|---|---|
| name : String [tylko do odczytu]
The name of the layout. | ILayout | ||
| uniqueID : String [tylko do odczytu]
The generated, unique identifier of the node. | ILayout | ||
Metody publiczne
| Metoda | Zdefiniowane przez | ||
|---|---|---|---|
Retrieves the value of the specified attribute key from the Layout object. | ILayout | ||
Retrieves an array of objects. | ILayout | ||
Allows the setting of any attribute key/value pair on the layout object. | ILayout | ||
Szczegół właściwości
name | właściwość |
name:String [tylko do odczytu] | Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Wersje środowiska wykonawczego: | AIR 2.6, Flash Player 10.2 |
The name of the layout. Can be a short name for a built-in layout or a fully-qualified class name.
Implementacja
public function get name():StringuniqueID | właściwość |
uniqueID:String [tylko do odczytu] | Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Wersje środowiska wykonawczego: | AIR 2.6, Flash Player 10.2 |
The generated, unique identifier of the node. The unique identifier is only constant during a single run of the application.
Implementacja
public function get uniqueID():StringSzczegół metody
getAttribute | () | metoda |
public function getAttribute(key:String):String| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
| Wersje środowiska wykonawczego: | AIR 2.6, Flash Player 10.2 |
Retrieves the value of the specified attribute key from the Layout object.
Parametry
key:String — Specifies any attribute that is used by the Layout.
|
String — The value associated with the key. Null if the attribute is not found.
|
getAttributePairs | () | metoda |
public function getAttributePairs():Array| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
| Wersje środowiska wykonawczego: | AIR 2.6, Flash Player 10.2 |
Retrieves an array of objects. The array contains a name and value formatted as: name:String value:* which represents
the attributes of a given layout and their values. These values allows iteration of the
attributes on a layout.
Array — An array of objects. For example, when the value is a string value: {name:String, value:String}
|
setAttribute | () | metoda |
public function setAttribute(key:String, value:String):void| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
| Wersje środowiska wykonawczego: | AIR 2.6, Flash Player 10.2 |
Allows the setting of any attribute key/value pair on the layout object.
Parametry
key:String — Specifies any attribute that is used by the Layout as a property.
| |
value:String — Specifies any value that is used by the Layout, associate with the key provided.
|
Tue Jun 12 2018, 12:06 PM Z