| Pakket | mx.olap |
| Klasse | public class OLAPQuery |
| Overerving | OLAPQuery Object |
| Implementatie | IOLAPQuery |
| Taalversie: | ActionScript 3.0 |
| Productversie: | Flex 3 |
| Runtimeversies: | Flash Player 9, AIR 1.1 |
MXML-syntaxis verbergen
The <mx:OLAPQuery> tag inherits all of the tag attributes
of its superclass, and adds the following tag attributes:
<mx:OLAPQuery
Properties
axis=""
/>
Standaard-MXML-eigenschapaxes
Meer voorbeelden
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
Verwante API-elementen
| Eigenschap | Gedefinieerd door | ||
|---|---|---|---|
| axes : Array
The axis of the Query as an Array of OLAPQueryAxis instances. | OLAPQuery | ||
| COLUMN_AXIS : int = 0 [statisch]
Specifies a column axis. | OLAPQuery | ||
![]() | constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | |
| ROW_AXIS : int = 1 [statisch]
Specifies a row axis. | OLAPQuery | ||
| SLICER_AXIS : int = 2 [statisch]
Specifies a slicer axis. | OLAPQuery | ||
| Methode | Gedefinieerd door | ||
|---|---|---|---|
Gets an axis from the query. | OLAPQuery | ||
![]() |
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | |
![]() |
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | |
![]() |
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | |
Sets an axis to the query. | OLAPQuery | ||
![]() |
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | |
![]() |
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | |
![]() |
Retourneert een tekenreeksrepresentatie van het opgegeven object. | Object | |
![]() |
Retourneert de primitieve waarde van het opgegeven object. | Object | |
axes | eigenschap |
axes:Array| Taalversie: | ActionScript 3.0 |
| Productversie: | Flex 3 |
| Runtimeversies: | 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.
Implementatie
public function get axes():Array public function set axes(value:Array):voidCOLUMN_AXIS | eigenschap |
public static var COLUMN_AXIS:int = 0| Taalversie: | ActionScript 3.0 |
| Productversie: | Flex 3 |
| Runtimeversies: | 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 | eigenschap |
public static var ROW_AXIS:int = 1| Taalversie: | ActionScript 3.0 |
| Productversie: | Flex 3 |
| Runtimeversies: | 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 | eigenschap |
public static var SLICER_AXIS:int = 2| Taalversie: | ActionScript 3.0 |
| Productversie: | Flex 3 |
| Runtimeversies: | 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 | () | methode |
public function getAxis(axisOrdinal:int):IOLAPQueryAxis| Taalversie: | ActionScript 3.0 |
| Productversie: | Flex 3 |
| Runtimeversies: | 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.
Parameters
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 | () | methode |
public function setAxis(axisOrdinal:int, axis:IOLAPQueryAxis):void| Taalversie: | ActionScript 3.0 |
| Productversie: | Flex 3 |
| Runtimeversies: | Flash Player 9, AIR 1.1 |
Sets an axis to the query.
Parameters
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.
|
Wed Jun 13 2018, 11:42 AM Z
MXML-syntaxis weergeven