NumberingPictureBullet.NumberingPictureBulletId Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
numPicBulletId
Represents the following attribute in the schema: w:numPicBulletId
[DocumentFormat.OpenXml.SchemaAttr(23, "numPicBulletId")]
public DocumentFormat.OpenXml.Int32Value NumberingPictureBulletId { get; set; }
public DocumentFormat.OpenXml.Int32Value NumberingPictureBulletId { get; set; }
[DocumentFormat.OpenXml.SchemaAttr(23, "numPicBulletId")]
public DocumentFormat.OpenXml.Int32Value? NumberingPictureBulletId { get; set; }
[DocumentFormat.OpenXml.SchemaAttr("w:numPicBulletId")]
public DocumentFormat.OpenXml.Int32Value? NumberingPictureBulletId { get; set; }
public DocumentFormat.OpenXml.Int32Value? NumberingPictureBulletId { get; set; }
member this.NumberingPictureBulletId : DocumentFormat.OpenXml.Int32Value with get, set
[<DocumentFormat.OpenXml.SchemaAttr(23, "numPicBulletId")>]
member this.NumberingPictureBulletId : DocumentFormat.OpenXml.Int32Value with get, set
[<DocumentFormat.OpenXml.SchemaAttr("w:numPicBulletId")>]
member this.NumberingPictureBulletId : DocumentFormat.OpenXml.Int32Value with get, set
Public Property NumberingPictureBulletId As Int32Value
Property Value
Returns Int32Value.
- Attributes
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.