| Pacchetto | mx.olap |
| Classe | public class OLAPQuery |
| Ereditarietà | OLAPQuery Object |
| Implementa | IOLAPQuery |
| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Nascondi sintassi MXML
The <mx:OLAPQuery> tag inherits all of the tag attributes
of its superclass, and adds the following tag attributes:
<mx:OLAPQuery
Properties
axis=""
/>
Proprietà MXML predefinitaaxes
Altri esempi
Preparing a cube for a query
Creating a query axis
Executing a query and returning the results to an OLAPDataGrid control
Writing a query for a simple OLAP cube
Writing a query for a complex OLAP cube
Creating a query using a nondefault measure
Elementi API correlati
| Proprietà | Definito da | ||
|---|---|---|---|
| axes : Array
The axis of the Query as an Array of OLAPQueryAxis instances. | OLAPQuery | ||
| COLUMN_AXIS : int = 0 [statico]
Specifies a column axis. | OLAPQuery | ||
![]() | constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | |
| ROW_AXIS : int = 1 [statico]
Specifies a row axis. | OLAPQuery | ||
| SLICER_AXIS : int = 2 [statico]
Specifies a slicer axis. | OLAPQuery | ||
| Metodo | Definito da | ||
|---|---|---|---|
Gets an axis from the query. | OLAPQuery | ||
![]() |
Indica se per un oggetto è definita una proprietà specifica. | Object | |
![]() |
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | |
![]() |
Indica se la proprietà specificata esiste ed è enumerabile. | Object | |
Sets an axis to the query. | OLAPQuery | ||
![]() |
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | |
![]() |
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | |
![]() |
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | |
![]() |
Restituisce il valore di base dell'oggetto specificato. | Object | |
axes | proprietà |
axes:Array| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
The axis of the Query as an Array of OLAPQueryAxis instances. A query can have three axes: column, row, and slicer.
Implementazione
public function get axes():Array public function set axes(value:Array):voidCOLUMN_AXIS | proprietà |
public static var COLUMN_AXIS:int = 0| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Specifies a column axis.
Use this property as a value of the axisOrdinal argument
to the getAxis() method.
ROW_AXIS | proprietà |
public static var ROW_AXIS:int = 1| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Specifies a row axis.
Use this property as a value of the axisOrdinal argument
to the getAxis() method.
SLICER_AXIS | proprietà |
public static var SLICER_AXIS:int = 2| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Specifies a slicer axis.
Use this property as a value of the axisOrdinal argument
to the getAxis() method.
getAxis | () | metodo |
public function getAxis(axisOrdinal:int):IOLAPQueryAxis| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Gets an axis from the query. You typically call this method to obtain an uninitialized IOLAPQueryAxis instance, then configure the IOLAPQueryAxis instance for the query.
Parametri
axisOrdinal:int — Specify OLAPQuery.COLUMN AXIS for a column axis,
OLAPQuery.ROW_AXIS for a row axis,
and OLAPQuery.SLICER_AXIS for a slicer axis.
|
IOLAPQueryAxis — The IOLAPQueryAxis instance.
|
setAxis | () | metodo |
public function setAxis(axisOrdinal:int, axis:IOLAPQueryAxis):void| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Sets an axis to the query.
Parametri
axisOrdinal:int — Specify OLAPQuery.COLUMN AXIS for a column axis,
OLAPQuery.ROW_AXIS for a row axis,
and OLAPQuery.SLICER_AXIS for a slicer axis.
| |
axis:IOLAPQueryAxis — The IOLAPQueryAxis instance.
|
Tue Jun 12 2018, 02:44 PM Z
Mostra sintassi MXML