Package | mx.olap |
Interface | public interface IOLAPLevel extends IOLAPElement |
Implementors | OLAPLevel |
Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Related API Elements
Public Properties
Property | Defined By | ||
---|---|---|---|
child : IOLAPLevel [read-only]
The next child level in the hierarchy. | IOLAPLevel | ||
depth : int [read-only]
The depth of the level in the hierarchy of the dimension. | IOLAPLevel | ||
dimension : IOLAPDimension [read-only]
The dimension to which this element belongs. | IOLAPElement | ||
displayName : String [read-only]
The name of the OLAP element, as a String, which can be used for display. | IOLAPElement | ||
hierarchy : IOLAPHierarchy [read-only]
The hierarchy of the dimension to which this level belongs. | IOLAPLevel | ||
members : IList [read-only]
The members of this level, as a list of IOLAPMember instances,
or null if a member is not found. | IOLAPLevel | ||
name : String [read-only]
The name of the OLAP element that includes the OLAP schema hierarchy of the element. | IOLAPElement | ||
parent : IOLAPLevel [read-only]
The parent level of this level, or null if this level is not nested in another level. | IOLAPLevel | ||
uniqueName : String [read-only]
The unique name of the OLAP element in the cube. | IOLAPElement |
Public Methods
Method | Defined By | ||
---|---|---|---|
Returns the members with the given name within the hierarchy. | IOLAPLevel |
Property Detail
child | property |
child:IOLAPLevel
[read-only] Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
The next child level in the hierarchy.
Implementation
public function get child():IOLAPLevel
depth | property |
hierarchy | property |
hierarchy:IOLAPHierarchy
[read-only] Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
The hierarchy of the dimension to which this level belongs.
Implementation
public function get hierarchy():IOLAPHierarchy
members | property |
members:IList
[read-only] Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
The members of this level, as a list of IOLAPMember instances, or null if a member is not found. The list might represent remote data and therefore can throw an ItemPendingError.
Implementation
public function get members():IList
parent | property |
parent:IOLAPLevel
[read-only] Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
The parent level of this level, or null if this level is not nested in another level.
Implementation
public function get parent():IOLAPLevel
Method Detail
findMember | () | method |
public function findMember(name:String):IList
Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Returns the members with the given name within the hierarchy.
Parameters
name:String — The name of the member.
|
IList — A list of IOLAPMember instances representing the members,
or null if a member is not found.
|
Thu Dec 6 2018, 01:12 PM -08:00