[Table of Contents] [docx version]

WordprocessingML Reference Material - Table of Contents

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: Consider the following WordprocessingML fragment for the properties of a single glossary document entry:

<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. end example]

Parent Elements

docPartPr2.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.

 

[Example: Consider the following WordprocessingML fragment for the properties of a single glossary document entry:

 

<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. end example]

 

The possible values for this attribute are defined by the ST_OnOff simple type2.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>