<types> (Entry Types)

This element specifies the set of types which shall be applied to the properties of the parent glossary document entry (§2.12.5). Each of these types may, based on their values, influence the visibility and behavior of the parent glossary document entry.

example:
<w:docPartPr>
  <w:types></w:types><w:docPartPr>

The <types> element specifies the set of entry types which shall be associated with the parent glossary document entry. ]

Parent Elements

<docPartPr>2.12.7)

Child Elements

Subclause

<type> (Entry Type)

§2.12.15

Attributes

Description

<all> (Entry Is Of All Types)

Specifies that the current glossary document is all types. This attribute shall override any information specified as child elements of this element and shall ensure that the current entry is associated with all available types.

If this attribute is omitted, then its default value shall be assumed to be false.

<w:docPartPr>
  <w:types w:all="true">
    <w:type w:val="autoExp" />
  </w:types><w:docPartPr>

The <types> element contains a single entry type definition, but because the @all attribute is present with a value of true, that type is augmented to place the parent entry into all possible types. ]

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

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

<complexType name="CT_DocPartTypes">
	<choice>
	<element name="type" type="CT_DocPartType" maxOccurs="unbounded"/>
	</choice>
	<attribute name="all" type="ST_OnOff" use="optional"/>
</complexType>