((Apenas para componentes do Flex Data Visualization))
Pacotemx.olap
Classepublic class OLAPMember
HerançaOLAPMember Inheritance OLAPElement Inheritance Proxy Inheritance Object
Implementa IOLAPMember
Subclasses OLAPMeasure

The OLAPMember class represents a member of an OLAP dimension.

Sintaxe em MXMLexpandedHide MXML Syntax

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

  <mx:OLAPMember
    Properties
  />
   

Veja também

mx.olap.IOLAPMember


Propriedades Públicas
 PropriedadeDefinido por
  children : IList
[read-only] The children of this member, as a list of IOLAPMember instances.
OLAPMember
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
  dataField : String
The field of the input data set that provides the data for this OLAPMember instance.
OLAPMember
  dimension : IOLAPDimension
The dimension to which this member belongs.
OLAPMember
 InheriteddisplayName : String
OLAPElement
  hierarchy : IOLAPHierarchy
[read-only] The hierarchy to which this member belongs.
OLAPMember
  isAll : Boolean
[read-only] Returns true if this is the all member of a hierarchy.
OLAPMember
  isMeasure : Boolean
[read-only] Returns true if this member represents a measure of a dimension.
OLAPMember
  level : IOLAPLevel
The level to which this member belongs.
OLAPMember
 Inheritedname : String
OLAPElement
  parent : IOLAPMember
The parent of this member.
OLAPMember
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
  uniqueName : String
[read-only] The unique name of the OLAP element in the cube.
OLAPMember
Métodos Públicos
 MétodoDefinido por
  
OLAPMember(name:String = null, displayName:String = null)
Constructor
OLAPMember
  
Returns a child of this member with the given name.
OLAPMember
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the unique name of the element.
OLAPElement
 Inherited
Returns the primitive value of the specified object.
Object
Detalhes da propriedade
childrenpropriedade
children:IList  [read-only]

The children of this member, as a list of IOLAPMember instances.


Implementação
    public function get children():IList
dataFieldpropriedade 
dataField:String  [read-write]

The field of the input data set that provides the data for this OLAPMember instance.


Implementação
    public function get dataField():String
    public function set dataField(value:String):void
dimensionpropriedade 
dimension:IOLAPDimension  [read-write]

The dimension to which this member belongs.


Implementação
    public function get dimension():IOLAPDimension
    public function set dimension(value:IOLAPDimension):void
hierarchypropriedade 
hierarchy:IOLAPHierarchy  [read-only]

The hierarchy to which this member belongs.


Implementação
    public function get hierarchy():IOLAPHierarchy
isAllpropriedade 
isAll:Boolean  [read-only]

Returns true if this is the all member of a hierarchy.


Implementação
    public function get isAll():Boolean
isMeasurepropriedade 
isMeasure:Boolean  [read-only]

Returns true if this member represents a measure of a dimension.


Implementação
    public function get isMeasure():Boolean
levelpropriedade 
level:IOLAPLevel  [read-write]

The level to which this member belongs.


Implementação
    public function get level():IOLAPLevel
    public function set level(value:IOLAPLevel):void
parentpropriedade 
parent:IOLAPMember  [read-write]

The parent of this member.


Implementação
    public function get parent():IOLAPMember
    public function set parent(value:IOLAPMember):void
uniqueNamepropriedade 
uniqueName:String  [read-only]

The unique name of the OLAP element in the cube. For exemplo, "[Time][Year][2007]" is a unique name, where 2007 is the element name belonging to the "Year" level of the "Time" dimension.


Implementação
    public function get uniqueName():String
Detalhes do construtor
OLAPMember()Construtor
public function OLAPMember(name:String = null, displayName:String = null)

Constructor

Parâmetros
name:String (default = null) — The name of the OLAP element that includes the OLAP schema hierarchy of the element. For exemplo, "Time_Year", where "Year" is a level of the "Time" dimension in an OLAP schema.
 
displayName:String (default = null) — The name of the OLAP member, as a String, which can be used for display.
Detalhes do método
findChildMember()método
public function findChildMember(name:String):IOLAPMember

Returns a child of this member with the given name.

Parâmetros

name:String — The name of the member.

Retorna
IOLAPMember — A list of IOLAPMember instances representing the member, or null if a member is not found.