| Pacote | mx.olap |
| Classe | public class OLAPQuery |
| Herança | OLAPQuery Object |
| Implementações | IOLAPQuery |
| Versão da linguagem: | ActionScript 3.0 |
| Versão de produto: | Flex 3 |
| Versões de runtime: | Flash Player 9, AIR 1.1 |
Ocultar sintaxe MXML
The <mx:OLAPQuery> tag inherits all of the tag attributes
of its superclass, and adds the following tag attributes:
<mx:OLAPQuery
Properties
axis=""
/>
Propriedade MXML padrãoaxes
Mais exemplos
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
Elementos da API relacionados
| Propriedade | Definido por | ||
|---|---|---|---|
| axes : Array
The axis of the Query as an Array of OLAPQueryAxis instances. | OLAPQuery | ||
| COLUMN_AXIS : int = 0 [estático]
Specifies a column axis. | OLAPQuery | ||
![]() | constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | |
| ROW_AXIS : int = 1 [estático]
Specifies a row axis. | OLAPQuery | ||
| SLICER_AXIS : int = 2 [estático]
Specifies a slicer axis. | OLAPQuery | ||
| Método | Definido por | ||
|---|---|---|---|
Gets an axis from the query. | OLAPQuery | ||
![]() |
Indica se um objeto tem uma propriedade especificada definida. | Object | |
![]() |
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | |
![]() |
Indica se a propriedade especificada existe e é enumerável. | Object | |
Sets an axis to the query. | OLAPQuery | ||
![]() |
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | |
![]() |
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | |
![]() |
Retorna a representação de string do objeto especificado. | Object | |
![]() |
Retorna o valor primitivo do objeto especificado. | Object | |
axes | propriedade |
axes:Array| Versão da linguagem: | ActionScript 3.0 |
| Versão de produto: | Flex 3 |
| Versões de 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.
Implementação
public function get axes():Array public function set axes(value:Array):voidCOLUMN_AXIS | propriedade |
public static var COLUMN_AXIS:int = 0| Versão da linguagem: | ActionScript 3.0 |
| Versão de produto: | Flex 3 |
| Versões de 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 | propriedade |
public static var ROW_AXIS:int = 1| Versão da linguagem: | ActionScript 3.0 |
| Versão de produto: | Flex 3 |
| Versões de 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 | propriedade |
public static var SLICER_AXIS:int = 2| Versão da linguagem: | ActionScript 3.0 |
| Versão de produto: | Flex 3 |
| Versões de 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 | () | método |
public function getAxis(axisOrdinal:int):IOLAPQueryAxis| Versão da linguagem: | ActionScript 3.0 |
| Versão de produto: | Flex 3 |
| Versões de 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.
Parâmetros
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 | () | método |
public function setAxis(axisOrdinal:int, axis:IOLAPQueryAxis):void| Versão da linguagem: | ActionScript 3.0 |
| Versão de produto: | Flex 3 |
| Versões de runtime: | Flash Player 9, AIR 1.1 |
Sets an axis to the query.
Parâmetros
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:10 AM Z
Mostrar sintaxe MXML