((Apenas para componentes do Flex Data Visualization))
Pacotemx.olap
Classepublic class OLAPElement
HerançaOLAPElement Inheritance Proxy Inheritance Object
Implementa IOLAPElement
Subclasses OLAPDimension, OLAPHierarchy, OLAPLevel, OLAPMember

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

Sintaxe em MXMLexpandedHide 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=""
  />
 
  

Veja também

mx.olap.IOLAPElement


Propriedades Públicas
 PropriedadeDefinido por
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
  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
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
  uniqueName : String
[read-only] The unique name of the OLAP element in the cube.
OLAPElement
Métodos Públicos
 MétodoDefinido por
  
OLAPElement(name:String = null, displayName:String = null)
Constructor
OLAPElement
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
  
Returns the unique name of the element.
OLAPElement
 Inherited
Returns the primitive value of the specified object.
Object
Detalhes da propriedade
dimensionpropriedade
dimension:IOLAPDimension  [read-write]

The dimension to which this element belongs.


Implementação
    public function get dimension():IOLAPDimension
    public function set dimension(value:IOLAPDimension):void
displayNamepropriedade 
displayName:String  [read-write]

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


Implementação
    public function get displayName():String
    public function set displayName(value:String):void
namepropriedade 
name:String  [read-write]

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


Implementação
    public function get name():String
    public function set name(value:String):void
uniqueNamepropriedade 
uniqueName:String  [read-only]

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


Implementação
    public function get uniqueName():String
Detalhes do construtor
OLAPElement()Construtor
public function OLAPElement(name:String = null, displayName:String = null)

Constructor

Parâmetros
name:String (default = null) — The name of the OLAP element that includes the OLAP schema hierarchy of the element. For exemplo, "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.
Detalhes do método
toString()método
public function toString():String

Returns the unique name of the element.

Retorna
String — The unique name of the element.