Guida di riferimento di ActionScript® 3.0 per la piattaforma Adobe® Flash®
Home  |  Nascondi elenco pacchetti e classi |  Pacchetti  |  Classi  |  Novità  |  Indice  |  Appendici  |  Perché in inglese?
Filtri: Recupero dati dal server...
Recupero dati dal server...
mx.olap 

OLAPHierarchy  - AS3 Flex

Pacchettomx.olap
Classepublic class OLAPHierarchy
EreditarietàOLAPHierarchy Inheritance OLAPElement Inheritance Proxy
Implementa IOLAPHierarchy
Sottoclassi OLAPAttribute

Versione linguaggio: ActionScript 3.0
Versione prodotto: Flex 3
Versioni runtime: Flash Player 9, AIR 1.1

The OLAPHierarchy class represents a hierarchy of the schema of an OLAP cube.

Sintassi MXMLexpandedNascondi sintassi MXML

The <mx:OLAPHierarchy> tag inherits all of the tag attributes of its superclass, and adds the following tag attributes:

  <mx:OLAPHierarchy
    Properties
    allMemberName="(All)"
    elements="An array of Levels of this hierarchy"
    hasAll="true|false"
    name="No default"
  />
 
  

Proprietà MXML predefinitaelements

Altri esempi

Elementi API correlati



Proprietà pubbliche
 ProprietàDefinito da
  allMemberName : String
The name of the all member of the hierarchy.
OLAPHierarchy
  children : IList
[sola lettura] The children of the all member, as a list of IOLAPMember instances.
OLAPHierarchy
  defaultMember : IOLAPMember
[sola lettura] The default member of the hierarchy.
OLAPHierarchy
 Inheriteddimension : IOLAPDimension
The dimension to which this element belongs.
OLAPElement
 InheriteddisplayName : String
The name of the OLAP element, as a String, which can be used for display.
OLAPElement
  elements : Array
[sola scrittura] An Array of the levels of the hierarchy, as OLAPLevel instances.
OLAPHierarchy
  hasAll : Boolean
Specifies whether the hierarchy has an all member, true, or not, false.
OLAPHierarchy
  levels : IList
All the levels of this hierarchy, as a list of IOLAPLevel instances.
OLAPHierarchy
  members : IList
[sola lettura] All members of all the levels that belong to this hierarchy, as a list of IOLAPMember instances.
OLAPHierarchy
  name : String
[override] User defined name of this hierarchy.
OLAPHierarchy
 InheriteduniqueName : String
[sola lettura] The unique name of the OLAP element in the cube.
OLAPElement
Metodi pubblici
 MetodoDefinito da
  
OLAPHierarchy(name:String = null, displayName:String = null)
Constructor
OLAPHierarchy
  
Returns the level with the given name within the hierarchy.
OLAPHierarchy
  
Returns the member with the given name within the hierarchy.
OLAPHierarchy
 Inherited
Returns the unique name of the element.
OLAPElement
Descrizione delle proprietà

allMemberName

proprietà
allMemberName:String

Versione linguaggio: ActionScript 3.0
Versione prodotto: Flex 3
Versioni runtime: Flash Player 9, AIR 1.1

The name of the all member of the hierarchy.

Il valore predefinito è "(All)".



Implementazione
    public function get allMemberName():String
    public function set allMemberName(value:String):void

children

proprietà 
children:IList  [sola lettura]

Versione linguaggio: ActionScript 3.0
Versione prodotto: Flex 3
Versioni runtime: Flash Player 9, AIR 1.1

The children of the all member, as a list of IOLAPMember instances.



Implementazione
    public function get children():IList

defaultMember

proprietà 
defaultMember:IOLAPMember  [sola lettura]

Versione linguaggio: ActionScript 3.0
Versione prodotto: Flex 3
Versioni runtime: Flash Player 9, AIR 1.1

The default member of the hierarchy. The default member is used if the hierarchy is used where a member is expected.



Implementazione
    public function get defaultMember():IOLAPMember

elements

proprietà 
elements:Array  [sola scrittura]

Versione linguaggio: ActionScript 3.0
Versione prodotto: Flex 3
Versioni runtime: Flash Player 9, AIR 1.1

An Array of the levels of the hierarchy, as OLAPLevel instances.



Implementazione
    public function set elements(value:Array):void

hasAll

proprietà 
hasAll:Boolean

Versione linguaggio: ActionScript 3.0
Versione prodotto: Flex 3
Versioni runtime: Flash Player 9, AIR 1.1

Specifies whether the hierarchy has an all member, true, or not, false. If true, the all member name is as specified by the allMemberName property.

Il valore predefinito è true.



Implementazione
    public function get hasAll():Boolean
    public function set hasAll(value:Boolean):void

levels

proprietà 
levels:IList

Versione linguaggio: ActionScript 3.0
Versione prodotto: Flex 3
Versioni runtime: Flash Player 9, AIR 1.1

All the levels of this hierarchy, as a list of IOLAPLevel instances. The returned list might represent remote data and therefore can throw an ItemPendingError.



Implementazione
    public function get levels():IList
    public function set levels(value:IList):void

members

proprietà 
members:IList  [sola lettura]

Versione linguaggio: ActionScript 3.0
Versione prodotto: Flex 3
Versioni runtime: Flash Player 9, AIR 1.1

All members of all the levels that belong to this hierarchy, as a list of IOLAPMember instances. The returned list might represent remote data and therefore can throw an ItemPendingError.



Implementazione
    public function get members():IList

name

proprietà 
name:String[override]

Versione linguaggio: ActionScript 3.0
Versione prodotto: Flex 3
Versioni runtime: Flash Player 9, AIR 1.1

User defined name of this hierarchy. If user has not set a explicit name then the dimension name is returned.



Implementazione
    override public function get name():String
    override public function set name(value:String):void
Descrizione della funzione di costruzione

OLAPHierarchy

()Funzione di costruzione
public function OLAPHierarchy(name:String = null, displayName:String = null)

Versione linguaggio: ActionScript 3.0
Versione prodotto: Flex 3
Versioni runtime: Flash Player 9, AIR 1.1

Constructor

Parametri
name:String (default = null) — The name of the OLAP level that includes the OLAP schema hierarchy of the element.
 
displayName:String (default = null) — The name of the OLAP level, as a String, which can be used for display.
Descrizione dei metodi

findLevel

()metodo
public function findLevel(name:String):IOLAPLevel

Versione linguaggio: ActionScript 3.0
Versione prodotto: Flex 3
Versioni runtime: Flash Player 9, AIR 1.1

Returns the level with the given name within the hierarchy.

Parametri

name:String — The name of the level.

Restituisce
IOLAPLevel — An IOLAPLevel instance representing the level, or null if a level is not found.

findMember

()metodo 
public function findMember(name:String):IOLAPMember

Versione linguaggio: ActionScript 3.0
Versione prodotto: Flex 3
Versioni runtime: Flash Player 9, AIR 1.1

Returns the member with the given name within the hierarchy.

Parametri

name:String — The name of the member.

Restituisce
IOLAPMember — An IOLAPMember instance representing the member, or null if a member is not found.




[ X ]Perché in inglese?
Il contenuto della Guida di riferimento di ActionScript 3.0 appare in inglese

Non tutte le parti della Guida di riferimento di ActionScript 3.0 sono tradotte in tutte le lingue. Quando un elemento del linguaggio non è tradotto, viene riportato in inglese. Ad esempio, la classe ga.controls.HelpBox non è tradotta in nessuna lingua. Pertanto, nella versione italiana della guida di riferimento, la descrizione della classe ga.controls.HelpBox è riportata in inglese.