| Package | mx.olap |
| Interface | public interface IOLAPTuple |
| Implementors | OLAPTuple |
See also
| Property | Defined By | ||
|---|---|---|---|
| explicitMembers : IList [read-only]
The user added members of this tuple, as a list of IOLAPMember instances. | IOLAPTuple | ||
| Method | Defined By | ||
|---|---|---|---|
Adds a new member to the tuple. | IOLAPTuple | ||
Adds a list of members to the tuple. | IOLAPTuple | ||
| explicitMembers | property |
explicitMembers:IList [read-only] The user added members of this tuple, as a list of IOLAPMember instances.
public function get explicitMembers():IList| addMember | () | method |
public function addMember(member:IOLAPElement):voidAdds a new member to the tuple.
Parameters
member:IOLAPElement — The member to add.
If member is a dimension or hierarchy, its default member
is added. If member is an instance of IOLAPMember,
it is added directly.
|
| addMembers | () | method |
public function addMembers(value:IList):voidAdds a list of members to the tuple. This method can be called when many members need to be added to the tuple.
Parameters
value:IList — The members to add, as a list of IOLAPMember instances.
|