Pacchetto | mx.olap |
Interfaccia | public interface IOLAPHierarchy extends IOLAPElement |
Implementatori | OLAPHierarchy |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Elementi API correlati
Proprietà | Definito da | ||
---|---|---|---|
allMemberName : String [sola lettura]
The name of the all member of the hierarchy. | IOLAPHierarchy | ||
children : IList [sola lettura]
The children of the all member, as a list of IOLAPMember instances. | IOLAPHierarchy | ||
defaultMember : IOLAPMember [sola lettura]
The default member of the hierarchy. | IOLAPHierarchy | ||
dimension : IOLAPDimension [sola lettura]
The dimension to which this element belongs. | IOLAPElement | ||
displayName : String [sola lettura]
The name of the OLAP element, as a String, which can be used for display. | IOLAPElement | ||
hasAll : Boolean [sola lettura]
Specifies whether the hierarchy has an all member, true,
or not, false. | IOLAPHierarchy | ||
levels : IList [sola lettura]
All the levels of this hierarchy, as a list of IOLAPLevel instances. | IOLAPHierarchy | ||
members : IList [sola lettura]
All members of all the levels that belong to this hierarchy,
as a list of IOLAPMember instances. | IOLAPHierarchy | ||
name : String [sola lettura]
The name of the OLAP element that includes the OLAP schema hierarchy of the element. | IOLAPElement | ||
uniqueName : String [sola lettura]
The unique name of the OLAP element in the cube. | IOLAPElement |
Metodo | Definito da | ||
---|---|---|---|
Returns the level with the given name within the hierarchy. | IOLAPHierarchy | ||
Returns the member with the given name within the hierarchy. | IOLAPHierarchy |
allMemberName | proprietà |
children | proprietà |
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
hasAll | proprietà |
hasAll:Boolean
[sola lettura] 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
levels | proprietà |
levels:IList
[sola lettura] 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
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
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.
|
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.
|
IOLAPMember — An IOLAPMember instance representing the member,
or null if a member is not found.
|
Tue Jun 12 2018, 02:44 PM Z