패키지 | mx.olap |
클래스 | public class OLAPDimension |
상속 | OLAPDimension OLAPElement Proxy |
구현 | IOLAPDimension |
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
The <mx:OLAPDimension>
tag inherits all of the tag attributes
of its superclass, and adds the following tag attributes:
<mx:OLAPDimension Properties attributes="" elements="" hierarchies="" />
기본 MXML 속성elements
기타 예제
관련 API 요소
속성 | 정의 주체 | ||
---|---|---|---|
attributes : IList
The attributes of this dimension, as a list of OLAPAttribute instances. | OLAPDimension | ||
cube : IOLAPCube
The cube to which this dimension belongs. | OLAPDimension | ||
defaultMember : IOLAPMember [읽기 전용]
The default member of this dimension. | OLAPDimension | ||
displayName : String
The name of the OLAP element, as a String, which can be used for display. | OLAPElement | ||
elements : Array [쓰기 전용]
Processes the input Array and initializes the attributes
and hierarchies properties based on the elements of the Array. | OLAPDimension | ||
hierarchies : IList
All the hierarchies for this dimension, as a list of IOLAPHierarchy instances. | OLAPDimension | ||
isMeasure : Boolean [읽기 전용]
Contains true if this is the measures dimension,
which holds all the measure members. | OLAPDimension | ||
members : IList [읽기 전용]
Returns all the members of this dimension, as a list of IOLAPMember instances. | OLAPDimension | ||
name : String
The name of the OLAP element that includes the OLAP schema hierarchy of the element. | OLAPElement | ||
uniqueName : String [읽기 전용]
The unique name of the OLAP element in the cube. | OLAPElement |
메서드 | 정의 주체 | ||
---|---|---|---|
Constructor
| OLAPDimension | ||
Returns the attribute with the given name within the dimension. | OLAPDimension | ||
Returns the hierarchy with the given name within the dimension. | OLAPDimension | ||
Returns the member with the given name within the dimension. | OLAPDimension | ||
Returns the unique name of the element. | OLAPElement |
attributes | 속성 |
cube | 속성 |
defaultMember | 속성 |
defaultMember:IOLAPMember
[읽기 전용] 언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
The default member of this dimension.
구현
public function get defaultMember():IOLAPMember
elements | 속성 |
elements:Array
[쓰기 전용] 언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Processes the input Array and initializes the attributes
and hierarchies
properties based on the elements of the Array.
Attributes are represented in the Array by instances of the OLAPAttribute class,
and hierarchies are represented by instances of the OLAPHierarchy class.
Use this property to define the attributes and hierarchies of a cube in a single Array.
구현
public function set elements(value:Array):void
hierarchies | 속성 |
isMeasure | 속성 |
members | 속성 |
OLAPDimension | () | 생성자 |
public function OLAPDimension(name:String = null, displayName:String = null)
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Constructor
매개 변수name:String (default = null ) — The name of the OLAP dimension that includes the OLAP schema hierarchy of the element.
| |
displayName:String (default = null ) — The name of the OLAP dimension, as a String, which can be used for display.
|
findAttribute | () | 메서드 |
public function findAttribute(name:String):IOLAPAttribute
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Returns the attribute with the given name within the dimension.
매개 변수
name:String — The name of the attribute.
|
IOLAPAttribute — An IOLAPAttribute instance representing the attribute,
or null if an attribute is not found.
|
findHierarchy | () | 메서드 |
public function findHierarchy(name:String):IOLAPHierarchy
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Returns the hierarchy with the given name within the dimension.
매개 변수
name:String — The name of the hierarchy.
|
IOLAPHierarchy — An IOLAPHierarchy instance representing the hierarchy,
or null if a hierarchy is not found.
|
findMember | () | 메서드 |
public function findMember(name:String):IOLAPMember
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Returns the member with the given name within the dimension.
매개 변수
name:String — The name of the member.
|
IOLAPMember — An IOLAPMember instance representing the member,
or null if a member is not found.
|
Tue Jun 12 2018, 03:17 PM Z