Paquete | com.adobe.mosaic.om.interfaces |
Interfaz | public interface ILayout |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versiones de motor de ejecución: | AIR 2.6, Flash Player 10.2 |
ILayout
interface provides the interface for describing the layout of a container.
Propiedades públicas
Propiedad | Definido por | ||
---|---|---|---|
name : String [solo lectura]
The name of the layout. | ILayout | ||
uniqueID : String [solo lectura]
The generated, unique identifier of the node. | ILayout |
Métodos públicos
Método | Definido por | ||
---|---|---|---|
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 |
Información sobre propiedades
name | propiedad |
name:String
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versiones de motor de ejecución: | 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.
Implementación
public function get name():String
uniqueID | propiedad |
uniqueID:String
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versiones de motor de ejecución: | 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.
Implementación
public function get uniqueID():String
Información sobre métodos
getAttribute | () | método |
public function getAttribute(key:String):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versiones de motor de ejecución: | AIR 2.6, Flash Player 10.2 |
Retrieves the value of the specified attribute key from the Layout object.
Parámetros
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 | () | método |
public function getAttributePairs():Array
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versiones de motor de ejecución: | 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 | () | método |
public function setAttribute(key:String, value:String):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versiones de motor de ejecución: | AIR 2.6, Flash Player 10.2 |
Allows the setting of any attribute key/value pair on the layout object.
Parámetros
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, 02:12 PM Z