[Table of Contents] [docx version]

WordprocessingML Reference Material - Table of Contents

numPicBullet (Picture Numbering Symbol Definition)

This element specifies the appearance and behavior of a specific picture to be used as the numbering symbol within a numbering level definition in a document, and is the basis for all picture numbering symbol information in a WordprocessingML document.

This element is not used directly within abstract numbering definitions but rather is referenced through its numPicBulletId attribute by the lvlPicBulletId element (§2.9.10) used within numbering level definitions.

[Example: Consider the WordprocessingML fragment below which illustrates how a numPicBullet definition is referenced by a picture numbering symbol definition reference through its numPicBulletId attribute:

<w:numPicBullet w:numPicBulletId="1">

<w:pict>

<v:shape id="_x0000_i1031" type="#_x0000_t75" style="width:3in;height:276.75pt" o:bullet="t">

<v:imagedata r:id="rId2" o:title="testpic" />

</v:shape>

</w:pict>

</w:numPicBullet>

...

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

<w:nsid w:val="71A06359" />

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

<w:tmpl w:val="10643FE6" />

<w:lvl w:ilvl="0" w:tplc="B7663E56">

<w:start w:val="1" />

<w:nfc w:val="23" />

<w:lvlText w:val="" />

<w:lvlPicBulletId w:val="1" />

</w:lvl>

</w:abstractNum>

The lvlPicBulletId element references a numPicBullet element, which defines the size and appearance of all picture bullets of this type the document. It is important to note that this picture bullet may be referenced by multiple levels of various numbering definitions. end example]

Parent Elements

numbering2.9.17)

 

Child Elements

Subclause

pict (Picture Numbering Symbol Properties)

§2.9.23

 

Attributes

Description

numPicBulletId (Picture Numbering Symbol ID)

Specifies a unique ID for this picture bullet definition which shall be used to reference this picture bullet from a numbering level definition.

 

[Example: Consider the WordprocessingML fragment below which illustrates how a numPicBullet definition is referenced by a picture numbering symbol definition reference through its numPicBulletId attribute:

 

<w:numPicBullet w:numPicBulletId="1">

</w:numPicBullet>

...

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

<w:lvl w:ilvl="0" w:tplc="B7663E56">

<w:lvlPicBulletId w:val="1" />

</w:lvl>

</w:abstractNum>

 

The lvlPicBulletId element references the ID in the numPicBulletId attribute directly. end example]

 

The possible values for this attribute are defined by the ST_DecimalNumber simple type2.18.16).

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

<complexType name="CT_NumPicBullet">

   <sequence>

   <element name="pict" type="CT_Picture"/>

   </sequence>

   <attribute name="numPicBulletId" type="ST_DecimalNumber" use="required"/>

</complexType>