Referencia de ActionScript® 3.0 para la plataforma de Adobe® Flash®
Inicio  |  Ocultar lista de paquetes y clases |  Paquetes  |  Clases  |  Novedades  |  Índice  |  Apéndices  |  ¿Por qué hay texto en inglés?
Filtros: Recuperando datos del servidor...
Recuperando datos del servidor...
mx.olap 

OLAPDimension  - AS3 Flex

Paquetemx.olap
Clasepublic class OLAPDimension
HerenciaOLAPDimension Inheritance OLAPElement Inheritance Proxy
Implementa IOLAPDimension

Versión del lenguaje: ActionScript 3.0
Versión de producto: Flex 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

The OLAPDimension class represents a dimension of an OLAP cube.

Sintaxis MXMLexpandedOcultar sintaxis MXML

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

  <mx:OLAPDimension
    Properties
    attributes=""
    elements=""
    hierarchies=""
   />
 
  

Propiedad MXML predeterminadaelements

Más ejemplos

Elementos de API relacionados



Propiedades públicas
 PropiedadDefinido por
  attributes : IList
The attributes of this dimension, as a list of OLAPAttribute instances.
OLAPDimension
  cube : IOLAPCube
The cube to which this dimension belongs.
OLAPDimension
  defaultMember : IOLAPMember
[solo lectura] The default member of this dimension.
OLAPDimension
 InheriteddisplayName : String
The name of the OLAP element, as a String, which can be used for display.
OLAPElement
  elements : Array
[solo escritura] Processes the input Array and initializes the attributes and hierarchies properties based on the elements of the Array.
OLAPDimension
  hierarchies : IList
All the hierarchies for this dimension, as a list of IOLAPHierarchy instances.
OLAPDimension
  isMeasure : Boolean
[solo lectura] Contains true if this is the measures dimension, which holds all the measure members.
OLAPDimension
  members : IList
[solo lectura] Returns all the members of this dimension, as a list of IOLAPMember instances.
OLAPDimension
 Inheritedname : String
The name of the OLAP element that includes the OLAP schema hierarchy of the element.
OLAPElement
 InheriteduniqueName : String
[solo lectura] The unique name of the OLAP element in the cube.
OLAPElement
Métodos públicos
 MétodoDefinido por
  
OLAPDimension(name:String = null, displayName:String = null)
Constructor
OLAPDimension
  
Returns the attribute with the given name within the dimension.
OLAPDimension
  
Returns the hierarchy with the given name within the dimension.
OLAPDimension
  
Returns the member with the given name within the dimension.
OLAPDimension
 Inherited
Returns the unique name of the element.
OLAPElement
Información sobre propiedades

attributes

propiedad
attributes:IList

Versión del lenguaje: ActionScript 3.0
Versión de producto: Flex 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

The attributes of this dimension, as a list of OLAPAttribute instances.



Implementación
    public function get attributes():IList
    public function set attributes(value:IList):void

cube

propiedad 
cube:IOLAPCube

Versión del lenguaje: ActionScript 3.0
Versión de producto: Flex 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

The cube to which this dimension belongs.



Implementación
    public function get cube():IOLAPCube
    public function set cube(value:IOLAPCube):void

defaultMember

propiedad 
defaultMember:IOLAPMember  [solo lectura]

Versión del lenguaje: ActionScript 3.0
Versión de producto: Flex 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

The default member of this dimension.



Implementación
    public function get defaultMember():IOLAPMember

elements

propiedad 
elements:Array  [solo escritura]

Versión del lenguaje: ActionScript 3.0
Versión de producto: Flex 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Processes the input Array and initializes the attributes and hierarchies properties based on the elements of the Array. Attributes are represented in the Array by instances of the OLAPAttribute class, and hierarchies are represented by instances of the OLAPHierarchy class.

Use this property to define the attributes and hierarchies of a cube in a single Array.



Implementación
    public function set elements(value:Array):void

hierarchies

propiedad 
hierarchies:IList

Versión del lenguaje: ActionScript 3.0
Versión de producto: Flex 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

All the hierarchies for this dimension, as a list of IOLAPHierarchy instances.



Implementación
    public function get hierarchies():IList
    public function set hierarchies(value:IList):void

isMeasure

propiedad 
isMeasure:Boolean  [solo lectura]

Versión del lenguaje: ActionScript 3.0
Versión de producto: Flex 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Contains true if this is the measures dimension, which holds all the measure members.



Implementación
    public function get isMeasure():Boolean

members

propiedad 
members:IList  [solo lectura]

Versión del lenguaje: ActionScript 3.0
Versión de producto: Flex 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Returns all the members of this dimension, as a list of IOLAPMember instances. The returned list might represent remote data and therefore can throw an ItemPendingError.



Implementación
    public function get members():IList
Información sobre constructores

OLAPDimension

()Información sobre
public function OLAPDimension(name:String = null, displayName:String = null)

Versión del lenguaje: ActionScript 3.0
Versión de producto: Flex 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Constructor

Parámetros
name:String (default = null) — The name of the OLAP dimension that includes the OLAP schema hierarchy of the element.
 
displayName:String (default = null) — The name of the OLAP dimension, as a String, which can be used for display.
Información sobre métodos

findAttribute

()método
public function findAttribute(name:String):IOLAPAttribute

Versión del lenguaje: ActionScript 3.0
Versión de producto: Flex 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Returns the attribute with the given name within the dimension.

Parámetros

name:String — The name of the attribute.

Valor devuelto
IOLAPAttribute — An IOLAPAttribute instance representing the attribute, or null if an attribute is not found.

findHierarchy

()método 
public function findHierarchy(name:String):IOLAPHierarchy

Versión del lenguaje: ActionScript 3.0
Versión de producto: Flex 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Returns the hierarchy with the given name within the dimension.

Parámetros

name:String — The name of the hierarchy.

Valor devuelto
IOLAPHierarchy — An IOLAPHierarchy instance representing the hierarchy, or null if a hierarchy is not found.

findMember

()método 
public function findMember(name:String):IOLAPMember

Versión del lenguaje: ActionScript 3.0
Versión de producto: Flex 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Returns the member with the given name within the dimension.

Parámetros

name:String — The name of the member.

Valor devuelto
IOLAPMember — An IOLAPMember instance representing the member, or null if a member is not found.




[ X ]¿Por qué hay texto en inglés?
Cierto contenido de la Referencia de ActionScript 3.0 se muestra en inglés

No todo el contenido de la Referencia de ActionScript 3.0 se traduce a todos los idiomas. Si un elemento del lenguaje no se traduce, aparecerá en inglés. Por ejemplo, la clase ga.controls.HelpBox no está traducida en ningún idioma. Por lo tanto, en la versión en español de la referencia, la clase ga.controls.HelpBox aparecerá en inglés.