패키지 | mx.olap |
클래스 | public class OLAPHierarchy |
상속 | OLAPHierarchy OLAPElement Proxy |
구현 | IOLAPHierarchy |
하위 클래스 | OLAPAttribute |
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
The <mx:OLAPHierarchy>
tag inherits all of the tag attributes
of its superclass, and adds the following tag attributes:
<mx:OLAPHierarchy Properties allMemberName="(All)" elements="An array of Levels of this hierarchy" hasAll="true|false" name="No default" />
기본 MXML 속성elements
기타 예제
관련 API 요소
속성 | 정의 주체 | ||
---|---|---|---|
allMemberName : String
The name of the all member of the hierarchy. | OLAPHierarchy | ||
children : IList [읽기 전용]
The children of the all member, as a list of IOLAPMember instances. | OLAPHierarchy | ||
defaultMember : IOLAPMember [읽기 전용]
The default member of the hierarchy. | OLAPHierarchy | ||
dimension : IOLAPDimension
The dimension to which this element belongs. | OLAPElement | ||
displayName : String
The name of the OLAP element, as a String, which can be used for display. | OLAPElement | ||
elements : Array [쓰기 전용]
An Array of the levels of the hierarchy, as OLAPLevel instances. | OLAPHierarchy | ||
hasAll : Boolean
Specifies whether the hierarchy has an all member, true,
or not, false. | OLAPHierarchy | ||
levels : IList
All the levels of this hierarchy, as a list of IOLAPLevel instances. | OLAPHierarchy | ||
members : IList [읽기 전용]
All members of all the levels that belong to this hierarchy,
as a list of IOLAPMember instances. | OLAPHierarchy | ||
name : String [재정의]
User defined name of this hierarchy. | OLAPHierarchy | ||
uniqueName : String [읽기 전용]
The unique name of the OLAP element in the cube. | OLAPElement |
메서드 | 정의 주체 | ||
---|---|---|---|
Constructor
| OLAPHierarchy | ||
Returns the level with the given name within the hierarchy. | OLAPHierarchy | ||
Returns the member with the given name within the hierarchy. | OLAPHierarchy | ||
Returns the unique name of the element. | OLAPElement |
allMemberName | 속성 |
children | 속성 |
defaultMember | 속성 |
defaultMember:IOLAPMember
[읽기 전용] 언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
The default member of the hierarchy. The default member is used if the hierarchy is used where a member is expected.
구현
public function get defaultMember():IOLAPMember
elements | 속성 |
hasAll | 속성 |
hasAll:Boolean
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Specifies whether the hierarchy has an all member, true
,
or not, false
. If true
, the all member name
is as specified by the allMemberName
property.
기본값: true.
구현
public function get hasAll():Boolean
public function set hasAll(value:Boolean):void
levels | 속성 |
levels:IList
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
All the levels of this hierarchy, as a list of IOLAPLevel instances. The returned list might represent remote data and therefore can throw an ItemPendingError.
구현
public function get levels():IList
public function set levels(value:IList):void
members | 속성 |
members:IList
[읽기 전용] 언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
All members of all the levels that belong to this hierarchy, as a list of IOLAPMember instances. The returned list might represent remote data and therefore can throw an ItemPendingError.
구현
public function get members():IList
name | 속성 |
OLAPHierarchy | () | 생성자 |
public function OLAPHierarchy(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 level that includes the OLAP schema hierarchy of the element.
| |
displayName:String (default = null ) — The name of the OLAP level, as a String, which can be used for display.
|
findLevel | () | 메서드 |
public function findLevel(name:String):IOLAPLevel
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Returns the level with the given name within the hierarchy.
매개 변수
name:String — The name of the level.
|
IOLAPLevel — An IOLAPLevel instance representing the level,
or null if a level 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 hierarchy.
매개 변수
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