Language Version : ActionScript 3.0
Runtime Versions : Flash Player 9, AIR 1.1
The OLAPQuery interface represents an OLAP query that is executed on an IOLAPCube.
Show MXML Syntax Hide MXML Syntax
The <mx:OLAPQuery>
tag inherits all of the tag attributes
of its superclass, and adds the following tag attributes:
<mx:OLAPQuery
Properties
axis=""
/>
axes
axes:Array
Language Version : ActionScript 3.0
Runtime Versions : 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.
Implementation public function get axes():Array
public function set axes(value:Array):void
public static var COLUMN_AXIS:int = 0
Language Version : ActionScript 3.0
Runtime Versions : Flash Player 9, AIR 1.1
Specifies a column axis.
Use this property as a value of the axisOrdinal
argument
to the getAxis()
method.
public static var ROW_AXIS:int = 1
Language Version : ActionScript 3.0
Runtime Versions : Flash Player 9, AIR 1.1
Specifies a row axis.
Use this property as a value of the axisOrdinal
argument
to the getAxis()
method.
public static var SLICER_AXIS:int = 2
Language Version : ActionScript 3.0
Runtime Versions : Flash Player 9, AIR 1.1
Specifies a slicer axis.
Use this property as a value of the axisOrdinal
argument
to the getAxis()
method.
public function getAxis(axisOrdinal:int):IOLAPQueryAxis
Language Version : ActionScript 3.0
Runtime Versions : 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.
Returns public function setAxis(axisOrdinal:int, axis:IOLAPQueryAxis ):void
Language Version : ActionScript 3.0
Runtime Versions : 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.
The Apache Software Foundation Wed Nov 15 2017, 09:50 AM +01:00