| Pacote | mx.olap |
| Interface | public interface IOLAPLevel extends IOLAPElement |
| Implementors | OLAPLevel |
Veja também
| Propriedade | Definido por | ||
|---|---|---|---|
| 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 | |
| Método | Definido por | ||
|---|---|---|---|
|
Returns the members with the given name within the hierarchy.
| IOLAPLevel | ||
| child | propriedade |
child:IOLAPLevel [read-only] The next child level in the hierarchy.
public function get child():IOLAPLevel
| depth | propriedade |
depth:int [read-only] The depth of the level in the hierarchy of the dimension.
public function get depth():int
| hierarchy | propriedade |
hierarchy:IOLAPHierarchy [read-only] The hierarchy of the dimension to which this level belongs.
public function get hierarchy():IOLAPHierarchy
| members | propriedade |
members:IList [read-only] 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.
public function get members():IList
| parent | propriedade |
parent:IOLAPLevel [read-only] The parent level of this level, or null if this level is not nested in another level.
public function get parent():IOLAPLevel
| findMember | () | método |
public function findMember(name:String):IList
Returns the members with the given name within the hierarchy.
Parâmetros
name:String — The name of the member.
|
IList — A list of IOLAPMember instances representing the members,
or null if a member is not found.
|