NumberingPictureBullet.NumberingPictureBulletId Property
Picture Numbering Symbol ID.Represents the attribte in schema: w:numPicBulletId
Namespace: DocumentFormat.OpenXml.Wordprocessing
Assembly: DocumentFormat.OpenXml (in DocumentFormat.OpenXml.dll)
Syntax
'Declaration
<SchemaAttrAttribute(, "numPicBulletId")> _
Public Property NumberingPictureBulletId As Int32Value
Get
Set
'Usage
Dim instance As NumberingPictureBullet
Dim value As Int32Value
value = instance.NumberingPictureBulletId
instance.NumberingPictureBulletId = value
[SchemaAttrAttribute(, "numPicBulletId")]
public Int32Value NumberingPictureBulletId { get; set; }
Property Value
Type: DocumentFormat.OpenXml.Int32Value
Returns Int32Value.
Remarks
The following information from the ECMA International Standard ECMA-376 can be useful when working with this class.
Specifies a unique ID for this picture bullet definition which shall be used to reference this picture bullet from a numbering level definition.
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.
The possible values for this attribute are defined by the ST_DecimalNumber simple type.