패키지 | com.adobe.mosaic.om.interfaces |
인터페이스 | public interface ILayout |
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
런타임 버전: | AIR 2.6, Flash Player 10.2 |
ILayout
interface provides the interface for describing the layout of a container.
공용 속성
속성 | 정의 주체 | ||
---|---|---|---|
name : String [읽기 전용]
The name of the layout. | ILayout | ||
uniqueID : String [읽기 전용]
The generated, unique identifier of the node. | ILayout |
공용 메서드
메서드 | 정의 주체 | ||
---|---|---|---|
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 |
속성 세부 정보
name | 속성 |
name:String
[읽기 전용] 언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
런타임 버전: | 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.
구현
public function get name():String
uniqueID | 속성 |
uniqueID:String
[읽기 전용] 언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
런타임 버전: | 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.
구현
public function get uniqueID():String
메서드 세부 정보
getAttribute | () | 메서드 |
public function getAttribute(key:String):String
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
런타임 버전: | AIR 2.6, Flash Player 10.2 |
Retrieves the value of the specified attribute key from the Layout object.
매개 변수
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 | () | 메서드 |
public function getAttributePairs():Array
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
런타임 버전: | 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 | () | 메서드 |
public function setAttribute(key:String, value:String):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
런타임 버전: | AIR 2.6, Flash Player 10.2 |
Allows the setting of any attribute key/value pair on the layout object.
매개 변수
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, 03:17 PM Z