Packagemx.olap
Classpublic class OLAPElement
InheritanceOLAPElement Inheritance flash.utils.Proxy
Implements IOLAPElement
Subclasses OLAPDimension, OLAPHierarchy, OLAPLevel, OLAPMember

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

The OLAPElement class defines a base interface that provides common properties for all OLAP elements.

MXML SyntaxexpandedHide MXML Syntax

The <mx:OLAPElement> tag inherits all of the tag attributes of its superclass, and adds the following tag attributes:

  <mx:OLAPElement
    Properties
    dimensions=""
    name=""
  />
 
  

See also

mx.olap.IOLAPElement


Public Properties
 PropertyDefined By
  dimension : IOLAPDimension
The dimension to which this element belongs.
OLAPElement
  displayName : String
The name of the OLAP element, as a String, which can be used for display.
OLAPElement
  name : String
The name of the OLAP element that includes the OLAP schema hierarchy of the element.
OLAPElement
  uniqueName : String
[read-only] The unique name of the OLAP element in the cube.
OLAPElement
Public Methods
 MethodDefined By
  
OLAPElement(name:String = null, displayName:String = null)
Constructor
OLAPElement
  
toString():String
Returns the unique name of the element.
OLAPElement
Property Detail
dimensionproperty
dimension:IOLAPDimension

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

The dimension to which this element belongs.


Implementation
    public function get dimension():IOLAPDimension
    public function set dimension(value:IOLAPDimension):void
displayNameproperty 
displayName:String

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

The name of the OLAP element, as a String, which can be used for display.


Implementation
    public function get displayName():String
    public function set displayName(value:String):void
nameproperty 
name:String

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

The name of the OLAP element that includes the OLAP schema hierarchy of the element. For example, "Time_Year" is the name of the OLAP element, where "Year" is a level of the "Time" dimension in an OLAP schema.


Implementation
    public function get name():String
    public function set name(value:String):void
uniqueNameproperty 
uniqueName:String  [read-only]

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

The unique name of the OLAP element in the cube. For example, "[Time][Year][2007]" is a unique name, where 2007 is the element name belonging to the "Year" level of the "Time" dimension.


Implementation
    public function get uniqueName():String
Constructor Detail
OLAPElement()Constructor
public function OLAPElement(name:String = null, displayName:String = null)

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

Constructor

Parameters
name:String (default = null) — The name of the OLAP element that includes the OLAP schema hierarchy of the element. For example, "Time_Year", where "Year" is a level of the "Time" dimension in an OLAP schema.
 
displayName:String (default = null) — The name of the OLAP element, as a String, which can be used for display.
Method Detail
toString()method
public function toString():String

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

Returns the unique name of the element.

Returns
String — The unique name of the element.