Paket | mx.olap |
Sınıf | public class OLAPHierarchy |
Miras Alma | OLAPHierarchy OLAPElement Proxy |
Uygular | IOLAPHierarchy |
Alt Sınıflar | OLAPAttribute |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
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" />
Varsayılan MXML Özelliğielements
İlgili API Öğeleri
Özellik | Tanımlayan: | ||
---|---|---|---|
allMemberName : String
The name of the all member of the hierarchy. | OLAPHierarchy | ||
children : IList [salt okunur]
The children of the all member, as a list of IOLAPMember instances. | OLAPHierarchy | ||
defaultMember : IOLAPMember [salt okunur]
The default member of the hierarchy. | OLAPHierarchy | ||
dimension : IOLAPDimension
The dimension to which this element belongs. | OLAPElement | ||
displayName : String
The name of the OLAP element, as a String, which can be used for display. | OLAPElement | ||
elements : Array [salt yazılır]
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 [salt okunur]
All members of all the levels that belong to this hierarchy,
as a list of IOLAPMember instances. | OLAPHierarchy | ||
name : String [geçersiz kıl]
User defined name of this hierarchy. | OLAPHierarchy | ||
uniqueName : String [salt okunur]
The unique name of the OLAP element in the cube. | OLAPElement |
Yöntem | Tanımlayan: | ||
---|---|---|---|
Constructor
| OLAPHierarchy | ||
Returns the level with the given name within the hierarchy. | OLAPHierarchy | ||
Returns the member with the given name within the hierarchy. | OLAPHierarchy | ||
Returns the unique name of the element. | OLAPElement |
allMemberName | özellik |
children | özellik |
defaultMember | özellik |
defaultMember:IOLAPMember
[salt okunur] Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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.
Uygulama
public function get defaultMember():IOLAPMember
elements | özellik |
hasAll | özellik |
hasAll:Boolean
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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.
Varsayılan değer şudur true.
Uygulama
public function get hasAll():Boolean
public function set hasAll(value:Boolean):void
levels | özellik |
levels:IList
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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.
Uygulama
public function get levels():IList
public function set levels(value:IList):void
members | özellik |
members:IList
[salt okunur] Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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.
Uygulama
public function get members():IList
name | özellik |
name:String
[geçersiz kıl] Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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.
Uygulama
override public function get name():String
override public function set name(value:String):void
OLAPHierarchy | () | Yapıcı |
public function OLAPHierarchy(name:String = null, displayName:String = null)
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Constructor
Parametrelername: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.
|
findLevel | () | yöntem |
public function findLevel(name:String):IOLAPLevel
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the level with the given name within the hierarchy.
Parametreler
name:String — The name of the level.
|
IOLAPLevel — An IOLAPLevel instance representing the level,
or null if a level is not found.
|
findMember | () | yöntem |
public function findMember(name:String):IOLAPMember
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the member with the given name within the hierarchy.
Parametreler
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, 01:09 PM Z