Packagemx.olap
Interfacepublic interface IOLAPMember extends IOLAPElement
Implementors OLAPMember

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

The IOLAPMember interface represents a member of a level of an OLAP schema.

See also

mx.olap.OLAPMember


Public Properties
 PropertyDefined By
  children : IList
[read-only] The children of this member, as a list of IOLAPMember instances.
IOLAPMember
 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 to which this member belongs.
IOLAPMember
  isAll : Boolean
[read-only] Returns true if this is the all member of a hierarchy.
IOLAPMember
  isMeasure : Boolean
[read-only] Returns true if this member represents a measure of a dimension.
IOLAPMember
  level : IOLAPLevel
[read-only] The level to which this member belongs.
IOLAPMember
 Inheritedname : String
[read-only] The name of the OLAP element that includes the OLAP schema hierarchy of the element.
IOLAPElement
  parent : IOLAPMember
[read-only] The parent of this member.
IOLAPMember
 InheriteduniqueName : String
[read-only] The unique name of the OLAP element in the cube.
IOLAPElement
Public Methods
 MethodDefined By
  
Returns a child of this member with the given name.
IOLAPMember
Property Detail
childrenproperty
children:IList  [read-only]

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

The children of this member, as a list of IOLAPMember instances.


Implementation
    public function get children():IList
hierarchyproperty 
hierarchy:IOLAPHierarchy  [read-only]

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

The hierarchy to which this member belongs.


Implementation
    public function get hierarchy():IOLAPHierarchy
isAllproperty 
isAll:Boolean  [read-only]

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Returns true if this is the all member of a hierarchy.


Implementation
    public function get isAll():Boolean
isMeasureproperty 
isMeasure:Boolean  [read-only]

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Returns true if this member represents a measure of a dimension.


Implementation
    public function get isMeasure():Boolean
levelproperty 
level:IOLAPLevel  [read-only]

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

The level to which this member belongs.


Implementation
    public function get level():IOLAPLevel
parentproperty 
parent:IOLAPMember  [read-only]

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

The parent of this member.


Implementation
    public function get parent():IOLAPMember
Method Detail
findChildMember()method
public function findChildMember(name:String):IOLAPMember

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Returns a child of this member with the given name.

Parameters

name:String — The name of the member.

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