ActionScript® 3.0 — dokumentacja dla platformy Adobe® Flash®
Strona główna  |  Ukryj listę pakietów i klas |  Pakiety  |  Klasy  |  Nowości  |  Indeks  |  Dodatki  |  Dlaczego język angielski?
Filtry: Pobieranie danych z serwera...
Pobieranie danych z serwera...
mx.olap 

OLAPDimension  - AS3 Flex

Pakietmx.olap
Klasapublic class OLAPDimension
DziedziczenieOLAPDimension Inheritance OLAPElement Inheritance Proxy
Implementuje IOLAPDimension

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

The OLAPDimension class represents a dimension of an OLAP cube.

Składnia MXMLexpandedUkryj składnię MXML

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

  <mx:OLAPDimension
    Properties
    attributes=""
    elements=""
    hierarchies=""
   />
 
  

Domyślna właściwość MXMLelements

Powiązane elementy interfejsu API



Właściwości publiczne
 WłaściwośćZdefiniowane przez
  attributes : IList
The attributes of this dimension, as a list of OLAPAttribute instances.
OLAPDimension
  cube : IOLAPCube
The cube to which this dimension belongs.
OLAPDimension
  defaultMember : IOLAPMember
[tylko do odczytu] The default member of this dimension.
OLAPDimension
 InheriteddisplayName : String
The name of the OLAP element, as a String, which can be used for display.
OLAPElement
  elements : Array
[tylko do zapisu] Processes the input Array and initializes the attributes and hierarchies properties based on the elements of the Array.
OLAPDimension
  hierarchies : IList
All the hierarchies for this dimension, as a list of IOLAPHierarchy instances.
OLAPDimension
  isMeasure : Boolean
[tylko do odczytu] Contains true if this is the measures dimension, which holds all the measure members.
OLAPDimension
  members : IList
[tylko do odczytu] Returns all the members of this dimension, as a list of IOLAPMember instances.
OLAPDimension
 Inheritedname : String
The name of the OLAP element that includes the OLAP schema hierarchy of the element.
OLAPElement
 InheriteduniqueName : String
[tylko do odczytu] The unique name of the OLAP element in the cube.
OLAPElement
Metody publiczne
 MetodaZdefiniowane przez
  
OLAPDimension(name:String = null, displayName:String = null)
Constructor
OLAPDimension
  
Returns the attribute with the given name within the dimension.
OLAPDimension
  
Returns the hierarchy with the given name within the dimension.
OLAPDimension
  
Returns the member with the given name within the dimension.
OLAPDimension
 Inherited
Returns the unique name of the element.
OLAPElement
Szczegół właściwości

attributes

właściwość
attributes:IList

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

The attributes of this dimension, as a list of OLAPAttribute instances.



Implementacja
    public function get attributes():IList
    public function set attributes(value:IList):void

cube

właściwość 
cube:IOLAPCube

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

The cube to which this dimension belongs.



Implementacja
    public function get cube():IOLAPCube
    public function set cube(value:IOLAPCube):void

defaultMember

właściwość 
defaultMember:IOLAPMember  [tylko do odczytu]

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

The default member of this dimension.



Implementacja
    public function get defaultMember():IOLAPMember

elements

właściwość 
elements:Array  [tylko do zapisu]

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

Processes the input Array and initializes the attributes and hierarchies properties based on the elements of the Array. Attributes are represented in the Array by instances of the OLAPAttribute class, and hierarchies are represented by instances of the OLAPHierarchy class.

Use this property to define the attributes and hierarchies of a cube in a single Array.



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

hierarchies

właściwość 
hierarchies:IList

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

All the hierarchies for this dimension, as a list of IOLAPHierarchy instances.



Implementacja
    public function get hierarchies():IList
    public function set hierarchies(value:IList):void

isMeasure

właściwość 
isMeasure:Boolean  [tylko do odczytu]

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

Contains true if this is the measures dimension, which holds all the measure members.



Implementacja
    public function get isMeasure():Boolean

members

właściwość 
members:IList  [tylko do odczytu]

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

Returns all the members of this dimension, as a list of IOLAPMember instances. The returned list might represent remote data and therefore can throw an ItemPendingError.



Implementacja
    public function get members():IList
Konstruktor Szczegół

OLAPDimension

()Konstruktor
public function OLAPDimension(name:String = null, displayName:String = null)

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

Constructor

Parametry
name:String (default = null) — The name of the OLAP dimension that includes the OLAP schema hierarchy of the element.
 
displayName:String (default = null) — The name of the OLAP dimension, as a String, which can be used for display.
Szczegół metody

findAttribute

()metoda
public function findAttribute(name:String):IOLAPAttribute

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

Returns the attribute with the given name within the dimension.

Parametry

name:String — The name of the attribute.

Zwraca
IOLAPAttribute — An IOLAPAttribute instance representing the attribute, or null if an attribute is not found.

findHierarchy

()metoda 
public function findHierarchy(name:String):IOLAPHierarchy

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

Returns the hierarchy with the given name within the dimension.

Parametry

name:String — The name of the hierarchy.

Zwraca
IOLAPHierarchy — An IOLAPHierarchy instance representing the hierarchy, or null if a hierarchy is not found.

findMember

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

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

Returns the member with the given name within the dimension.

Parametry

name:String — The name of the member.

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




[ X ]Dlaczego język angielski?
Treść dokumentacji języka ActionScript 3.0 wyświetlana w języku angielskim

Niektóre części dokumentacji języka ActionScript 3.0 nie są przetłumaczone na poszczególne języki. Gdy element nie jest przetłumaczony na dany język, jest wyświetlany tekst angielski. Na przykład opis klasy ga.controls.HelpBox nie jest przetłumaczony na żaden dodatkowy język. Z tego powodu polska wersja dokumentacji zawiera opis klasy ga.controls.HelpBox w języku angielskim.