Packagemx.olap
Classpublic class OLAPTuple
InheritanceOLAPTuple Inheritance Object
Implements IOLAPTuple

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

The OLAPTuple class reprsents a tuple expression pointing to an OLAP cube cell. A tuple is made up of one member from every dimension that is contained within a cube. The complete expression of a tuple identifier is made up of one or more explicitly specified members, in parentheses. A tuple can be fully qualified, can contain implicit members, or can contain a single member. Any dimension that is not explicitly referenced within a tuple is implicitly referenced.

The member for the implicitly referenced dimension depends on the structure of the dimension:

See also

mx.olap.IOLAPTuple


Public Properties
 PropertyDefined By
  explicitMembers : IList
[read-only] The user added members of this tuple, as a list of IOLAPMember instances.
OLAPTuple
Public Methods
 MethodDefined By
  
Constructor
OLAPTuple
  
addMember(element:IOLAPElement):void
Adds a new member to the tuple.
OLAPTuple
  
addMembers(value:IList):void
Adds a list of members to the tuple.
OLAPTuple
Property Detail
explicitMembersproperty
explicitMembers:IList  [read-only]

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

The user added members of this tuple, as a list of IOLAPMember instances.


Implementation
    public function get explicitMembers():IList
Constructor Detail
OLAPTuple()Constructor
public function OLAPTuple()

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

Constructor

Method Detail
addMember()method
public function addMember(element:IOLAPElement):void

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

Adds a new member to the tuple.

Parameters

element:IOLAPElement — The member to add. If member is a dimension or hierarchy, its default member is added. If member is an instance of IOLAPMember, it is added directly.

addMembers()method 
public function addMembers(value:IList):void

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

Adds a list of members to the tuple. This method can be called when many members need to be added to the tuple.

Parameters

value:IList — The members to add, as a list of IOLAPMember instances.