[Table of Contents] [docx version]

WordprocessingML Reference Material - Table of Contents

ST_UnsignedDecimalNumber (Unsigned Decimal Number Value)

This simple type specifies that its contents will contain a positive whole decimal number, whose contents are interpreted based on the context of the parent XML element.

[Example: Consider the following WordprocessingML fragment:

<w:pPr>

<w:divId w:val="1512645511" />

</w:pPr>

The value of the val attribute is the ID of the associated HTML div.

However, consider the following fragment:

<w:ilvl w:val="1">

...

</w:ilvl>

In this case, the decimal number in the val attribute is the ID of the associated numbering level. In each case, the decimal number value is interpreted in the context of the parent element. end example]

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

Referenced By

ST_EighthPointMeasure2.18.27); ST_HpsMeasure2.18.48); ST_PixelsMeasure2.18.74); ST_PointMeasure2.18.75); ST_TwipsMeasure2.18.105)

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

<simpleType name="ST_UnsignedDecimalNumber">

   <restriction base="xsd:unsignedLong"/>

</simpleType>