((Apenas para componentes do Flex Data Visualization))
Pacotemx.olap
Interfacepublic interface IOLAPLevel extends IOLAPElement
ImplementorsOLAPLevel

The IOLAPLevel interface represents a level within the OLAP schema of an OLAP cube, where a hierarchy of a dimension contains one or more levels.

Veja também

mx.olap.OLAPLevel


Propriedades Públicas
 PropriedadeDefinido 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
 Inheriteddimension : IOLAPDimension
[read-only] The dimension to which this element belongs.
IOLAPElement
 InheriteddisplayName : 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
 Inheritedname : 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
 InheriteduniqueName : String
[read-only] The unique name of the OLAP element in the cube.
IOLAPElement
Métodos Públicos
 MétodoDefinido por
  
Returns the members with the given name within the hierarchy.
IOLAPLevel
Detalhes da propriedade
childpropriedade
child:IOLAPLevel  [read-only]

The next child level in the hierarchy.


Implementação
    public function get child():IOLAPLevel
depthpropriedade 
depth:int  [read-only]

The depth of the level in the hierarchy of the dimension.


Implementação
    public function get depth():int
hierarchypropriedade 
hierarchy:IOLAPHierarchy  [read-only]

The hierarchy of the dimension to which this level belongs.


Implementação
    public function get hierarchy():IOLAPHierarchy
memberspropriedade 
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.


Implementação
    public function get members():IList
parentpropriedade 
parent:IOLAPLevel  [read-only]

The parent level of this level, or null if this level is not nested in another level.


Implementação
    public function get parent():IOLAPLevel
Detalhes do método
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.

Retorna
IList — A list of IOLAPMember instances representing the members, or null if a member is not found.