Contains information about an OLAP member property field.
Namespace | urn:schemas-microsoft-com:office:excel |
Schema name | XML Spreadsheet 2000 |
Element | Description |
---|---|
Name | Specifies the name of the OLAP member property field. |
UniqueName | Specifies a unique name for an OLAP member property field. |
SourceHierarchyLevel | Contains an index of the hierarchy level to which a particular OLAP member property applies. A value of 32767 indicates that the OLAP member property applies to all the levels in a hierarchy. |
LengthLevelUniqueName | Contains a count of the characters in the unique name of the OLAP hierarchy level to which an OLAP member property applies. |
DisplayIn | Contains an enumerated value indicating how to display an OLAP member property. |
Caption | Specifies a caption (display name) for an OLAP member property. |
None.
<xsd:complexType name="MemberPropertyType" >
<xsd:sequence>
<xsd:element name="Name" type="xsd:string" minOccurs="0">
</xsd:element>
<xsd:element name="UniqueName" type="xsd:string" minOccurs="0">
</xsd:element>
<xsd:element name="SourceHierarchyLevel" type="xsd:integer" minOccurs="0">
</xsd:element>
<xsd:element name="LengthLevelUniqueName" type="xsd:integer" minOccurs="0">
</xsd:element>
<xsd:element name="DisplayIn" minOccurs="0">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="DisplayInReport" />
<xsd:enumeration value="DisplayInScreenTip" />
<xsd:enumeration value="DisplayNone" />
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Caption" type="xsd:string" minOccurs="0">
</xsd:element>
</xsd:sequence>
</xsd:complexType>