[Table of Contents] [docx version]

WordprocessingML Reference Material - Table of Contents

ST_MultiLevelType (Numbering Definition Type)

This simple type specifies the possible types of numbering which may be defined by a given abstract numbering type. This information shall only be used by a consumer to determine user interface behaviors for this numbering definition, and shall not be used to limit the behavior of the list (i.e. a list with multiple levels marked as singleLevel shall not be prevented from using levels 2 through 9).

[Example: Consider the WordprocessingML below:

<w:abstractNum w:abstractNumId="8">

<w:multiLevelType w:val="singleLevel" />

</w:abstractNum>

This abstract numbering definition is specified to be of the singleLevel type by the multiLevelType element. end example]

This simple type's contents are a restriction of the XML Schema string datatype.

The following are possible enumeration values for this type:

Enumeration Value

Description

hybridMultilevel (Hybrid Multilevel Numbering Definition)

Specifies that this numbering definition defines a numbering format consisting of a multiple levels, each of a potentially different type (bullets vs. level text).

multilevel (Multilevel Numbering Definition)

Specifies that this numbering definition defines a numbering format consisting of a multiple levels, each of the same type (bullets vs. level text).

singleLevel (Single Level Numbering Definition)

Specifies that this numbering definition defines a numbering format consisting of a single level only.

 

Referenced By

multiLevelType@val2.9.13)

The following XML Schema fragment defines the contents of this simple type:

<simpleType name="ST_MultiLevelType">

   <restriction base="xsd:string">

   <enumeration value="singleLevel"/>

   <enumeration value="multilevel"/>

   <enumeration value="hybridMultilevel"/>

   </restriction>

</simpleType>