| Package | mx.olap |
| Class | public class OLAPMember |
| Inheritance | OLAPMember OLAPElement Proxy Object |
| Implements | IOLAPMember |
| Subclasses | OLAPMeasure |
Hide MXML Syntax
The <mx:OLAPMember> tag inherits all of the tag attributes
of its superclass, and adds the following tag attributes:
<mx:OLAPMember
Properties
/>
See also
| Property | Defined By | ||
|---|---|---|---|
| children : IList
[read-only]
The children of this member, as a list of IOLAPMember instances.
| OLAPMember | ||
![]() | constructor : 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 | ||
![]() | displayName : String
The name of the OLAP element, as a String, which can be used for display.
| 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 | ||
![]() | name : String
The name of the OLAP element that includes the OLAP schema hierarchy of the element.
| OLAPElement | |
| parent : IOLAPMember
The parent of this member.
| OLAPMember | ||
![]() | prototype : 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 | ||
| Method | Defined By | ||
|---|---|---|---|
|
Constructor
| OLAPMember | ||
|
Returns a child of this member with the given name.
| OLAPMember | ||
![]() |
Indicates whether an object has a specified property defined.
| Object | |
![]() |
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter.
| Object | |
![]() |
Indicates whether the specified property exists and is enumerable.
| Object | |
![]() |
Sets the availability of a dynamic property for loop operations.
| Object | |
![]() |
Returns the unique name of the element.
| OLAPElement | |
![]() |
Returns the primitive value of the specified object.
| Object | |
| children | property |
children:IList [read-only]
The children of this member, as a list of IOLAPMember instances.
public function get children():IList
| dataField | property |
dataField:String [read-write] The field of the input data set that provides the data for this OLAPMember instance.
public function get dataField():String
public function set dataField(value:String):void
| dimension | property |
dimension:IOLAPDimension [read-write] The dimension to which this member belongs.
public function get dimension():IOLAPDimension
public function set dimension(value:IOLAPDimension):void
| hierarchy | property |
hierarchy:IOLAPHierarchy [read-only]
The hierarchy to which this member belongs.
public function get hierarchy():IOLAPHierarchy
| isAll | property |
isAll:Boolean [read-only]
Returns true if this is the all member of a hierarchy.
public function get isAll():Boolean
| isMeasure | property |
isMeasure:Boolean [read-only]
Returns true if this member represents a measure of a dimension.
public function get isMeasure():Boolean
| level | property |
level:IOLAPLevel [read-write]
The level to which this member belongs.
public function get level():IOLAPLevel
public function set level(value:IOLAPLevel):void
| parent | property |
parent:IOLAPMember [read-write]
The parent of this member.
public function get parent():IOLAPMember
public function set parent(value:IOLAPMember):void
| uniqueName | property |
uniqueName:String [read-only]
The unique name of the OLAP element in the cube. For example, "[Time][Year][2007]" is a unique name, where 2007 is the element name belonging to the "Year" level of the "Time" dimension.
public function get uniqueName():String
| OLAPMember | () | Constructor |
public function OLAPMember(name:String = null, displayName:String = null)
Constructor
Parametersname:String (default = null) — The name of the OLAP element that includes the OLAP schema hierarchy of the element.
For example, "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.
|
| findChildMember | () | method |
public function findChildMember(name:String):IOLAPMember
Returns a child of this member with the given name.
Parameters
name:String — The name of the member.
|
IOLAPMember — A list of IOLAPMember instances representing the member,
or null if a member is not found.
|