Pacchetto | mx.olap |
Classe | public class OLAPQueryAxis |
Ereditarietà | OLAPQueryAxis Object |
Implementa | IOLAPQueryAxis |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The <mx:OLAPQueryAxis>
tag inherits all of the tag attributes
of its superclass, and adds the following tag attributes:
<mx:OLAPQueryAxis Properties />
Elementi API correlati
Proprietà | Definito da | ||
---|---|---|---|
axisOrdinal : int
The type of axis, as
OLAPQuery.COLUMN AXIS for a column axis,
OLAPQuery.ROW_AXIS for a row axis,
and OLAPQuery.SLICER_AXIS for a slicer axis. | OLAPQueryAxis | ||
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
sets : Array [sola lettura]
All the sets of the query axis, as an Array of IOLAPSet instances. | OLAPQueryAxis | ||
tuples : Array [sola lettura]
All the tuples added to the query axis, as an Array of IOLAPTuple instances. | OLAPQueryAxis |
Metodo | Definito da | ||
---|---|---|---|
OLAPQueryAxis(ordinal:int)
Constructor
| OLAPQueryAxis | ||
Adds a single member to the query axis. | OLAPQueryAxis | ||
Adds a set to the query axis. | OLAPQueryAxis | ||
Adds a tuple to the query axis. | OLAPQueryAxis | ||
Clears all the sets, tuples and members from this axis. | OLAPQueryAxis | ||
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 | ||
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 |
axisOrdinal | proprietà |
public var axisOrdinal:int
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The type of axis, as
OLAPQuery.COLUMN AXIS
for a column axis,
OLAPQuery.ROW_AXIS
for a row axis,
and OLAPQuery.SLICER_AXIS
for a slicer axis.
sets | proprietà |
sets:Array
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
All the sets of the query axis, as an Array of IOLAPSet instances.
This Array includes sets added by the addMember()
and addTuple()
methods.
Implementazione
public function get sets():Array
tuples | proprietà |
tuples:Array
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
All the tuples added to the query axis, as an Array of IOLAPTuple instances.
This Array includes tuples added by the addMember()
and addSet()
methods.
Implementazione
public function get tuples():Array
OLAPQueryAxis | () | Funzione di costruzione |
public function OLAPQueryAxis(ordinal:int)
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Constructor
Parametriordinal:int — The type of axis.
Use OLAPQuery.COLUMN AXIS for a column axis,
OLAPQuery.ROW_AXIS for a row axis,
and OLAPQuery.SLICER_AXIS for a slicer axis.
|
addMember | () | metodo |
public function addMember(m:IOLAPMember):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Adds a single member to the query axis. The member is automatically converted to an IOLPASet instance. This method is useful when adding a member to a slicer axis.
Parametri
m:IOLAPMember — The member to add to the query.
|
addSet | () | metodo |
public function addSet(s:IOLAPSet):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Adds a set to the query axis. The set define the members and tuples that provide the information for the query axis.
Parametri
s:IOLAPSet — The set to add to the query.
|
addTuple | () | metodo |
public function addTuple(t:mx.olap:IOLAPTuple):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Adds a tuple to the query axis. The tuple is automatically converted to an IOLPASet instance.
Parametri
t:mx.olap:IOLAPTuple — The tuple to add to the query.
|
clear | () | metodo |
public function clear():void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Clears all the sets, tuples and members from this axis.
Tue Jun 12 2018, 02:44 PM Z