<b> (Boolean)

Represents a boolean value for an item in the PivotTable.

Parent Elements

<groupItems>3.10.1.38); <r>3.10.1.77); <sharedItems>3.10.1.90)

Child Elements

Subclause

<x> (Member Property Index)

§3.10.1.96

Attributes

Description

<c> (Caption)

Specifies the caption for the item.

The possible values for this attribute are defined by the ST_Xstring simple type (§3.18.96).

<cp> (Member Property Count)

Specifies the number of property values for this item.

The possible values for this attribute are defined by the XML Schema unsignedInt datatype.

<f> (Calculated Item)

Specifies a boolean value that indicates whether this item has a calculated value.

A value of on, 1, or true indicates the item has a calculated value.

A value of off, 0, or false indicates the item does not have a calculated value.

The possible values for this attribute are defined by the XML Schema boolean datatype.

<u> (Unused Item)

Specifies a boolean value that indicates whether this is an unused item. The application marks an item as unused when an item is deleted from the data source. The item and associated metadata are retained in the cache until the threshold for unused items specified in <missingItemsLimit> is reached.

A value of on, 1, or true indicates this item is unused.

A value of off, 0, or false indicates this item is used.

The possible values for this attribute are defined by the XML Schema boolean datatype.

<v> (Value)

Specifies the value of the item. This attribute is required.

The possible values for this attribute are defined by the XML Schema boolean datatype.

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Boolean">
	<sequence>
	<element name="x" minOccurs="0" maxOccurs="unbounded" type="CT_X"/>
	</sequence>
	<attribute name="v" use="required" type="xsd:boolean"/>
	<attribute name="u" type="xsd:boolean"/>
	<attribute name="f" type="xsd:boolean"/>
	<attribute name="c" type="ST_Xstring"/>
	<attribute name="cp" type="xsd:unsignedInt"/>
</complexType>