Paquete | mx.olap |
Clase | public class OLAPLevel |
Herencia | OLAPLevel OLAPElement Proxy |
Implementa | IOLAPLevel |
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 <mx:OLAPLevel>
tag inherits all of the tag attributes
of its superclass, and adds the following tag attributes:
<mx:OLAPLevel Properties attributeName="" />
Más ejemplos
Elementos de API relacionados
Propiedad | Definido por | ||
---|---|---|---|
attribute : OLAPAttribute [solo lectura]
The attribute connected to this level, as an instance of OLAPAttribute. | OLAPLevel | ||
attributeName : String
The name of the attribute to be used at this level. | OLAPLevel | ||
child : IOLAPLevel [solo lectura]
The next child level in the hierarchy. | OLAPLevel | ||
dataField : String [solo lectura]
The field of the input data set
that provides the data for this OLAPLevel instance. | OLAPLevel | ||
depth : int [solo lectura]
The depth of the level in the hierarchy of the dimension. | OLAPLevel | ||
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 | ||
hierarchy : IOLAPHierarchy
The hierarchy of the dimension to which this level belongs. | OLAPLevel | ||
members : IList [solo lectura]
The members of this level, as a list of IOLAPMember instances,
or null if a member is not found. | OLAPLevel | ||
name : String [override]
The value of the name property of the
OLAPAttribute instance associated with this OLAPLevel instance. | OLAPLevel | ||
parent : IOLAPLevel [solo lectura]
The parent level of this level, or null if this level is not nested in another level. | OLAPLevel | ||
uniqueName : String [override] [solo lectura]
The unique name of the OLAP element in the cube. | OLAPLevel |
Método | Definido por | ||
---|---|---|---|
Constructor
| OLAPLevel | ||
Returns the members with the given name within the hierarchy. | OLAPLevel | ||
Returns the unique name of the element. | OLAPElement |
attribute | propiedad |
attribute:OLAPAttribute
[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 attribute connected to this level, as an instance of OLAPAttribute.
Implementación
public function get attribute():OLAPAttribute
attributeName | propiedad |
attributeName:String
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 name of the attribute to be used at this level.
The value of this property corresponds to the value of the
OLAPAttribute.name
property for the corresponding attribute.
Implementación
public function get attributeName():String
public function set attributeName(value:String):void
child | propiedad |
child:IOLAPLevel
[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 next child level in the hierarchy.
Implementación
public function get child():IOLAPLevel
dataField | propiedad |
depth | propiedad |
hierarchy | propiedad |
hierarchy: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 |
The hierarchy of the dimension to which this level belongs.
Implementación
public function get hierarchy():IOLAPHierarchy
public function set hierarchy(value:IOLAPHierarchy):void
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 |
The members of this level, as a list of IOLAPMember instances, or null if a member is not found. The list might represent remote data and therefore can throw an ItemPendingError.
Implementación
public function get members():IList
name | propiedad |
name:String
[override] 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 value of the name
property of the
OLAPAttribute instance associated with this OLAPLevel instance.
Even though this property is writable, its value is determned by the OLAPAttribute instance
associated with the level and cannot be set.
Implementación
override public function get name():String
override public function set name(value:String):void
parent | propiedad |
parent:IOLAPLevel
[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 parent level of this level, or null if this level is not nested in another level.
Implementación
public function get parent():IOLAPLevel
uniqueName | propiedad |
uniqueName:String
[solo lectura] [override] 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 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.
Implementación
override public function get uniqueName():String
OLAPLevel | () | Información sobre |
public function OLAPLevel(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ámetrosname:String (default = null ) — The name of the OLAP level 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 level, as a String, which can be used for display.
|
findMember | () | método |
public function findMember(name:String):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 |
Returns the members with the given name within the hierarchy.
Parámetros
name:String — The name of the member.
|
IList — A list of IOLAPMember instances representing the members,
or null if a member is not found.
|
Tue Jun 12 2018, 02:12 PM Z