BuildList Class

Build List.When the object is serialized out as xml, its qualified name is p:bldLst.

Inheritance Hierarchy

System.Object
  DocumentFormat.OpenXml.OpenXmlElement
    DocumentFormat.OpenXml.OpenXmlCompositeElement
      DocumentFormat.OpenXml.Presentation.BuildList

Namespace:  DocumentFormat.OpenXml.Presentation
Assembly:  DocumentFormat.OpenXml (in DocumentFormat.OpenXml.dll)

Syntax

'Declaration
<ChildElementInfoAttribute(GetType(BuildDiagram))> _
<ChildElementInfoAttribute(GetType(BuildParagraph))> _
<ChildElementInfoAttribute(GetType(BuildOleChart))> _
<ChildElementInfoAttribute(GetType(BuildGraphics))> _
Public Class BuildList _
    Inherits OpenXmlCompositeElement
'Usage
Dim instance As BuildList
[ChildElementInfoAttribute(typeof(BuildDiagram))]
[ChildElementInfoAttribute(typeof(BuildParagraph))]
[ChildElementInfoAttribute(typeof(BuildOleChart))]
[ChildElementInfoAttribute(typeof(BuildGraphics))]
public class BuildList : OpenXmlCompositeElement

Remarks

The following table lists the possible child types:

  • BuildParagraph <p:bldP>

  • BuildDiagram <p:bldDgm>

  • BuildOleChart <p:bldOleChart>

  • BuildGraphics <p:bldGraphic>

[ISO/IEC 29500-1 1st Edition]

19.5.14 bldLst (Build List)

This element specifies the list of graphic elements to build. This refers to how the different sub-shapes or sub-components of a object are displayed. The different objects that can have build properties are text, diagrams, and charts.

[Example: Consider animating a pie chart but based on category as shown below:

DocumentFormat.OpenXml.Presentation.BuildList-imag

The <bldList> element should be used as follows:

<p:bldLst>
  <p:bldGraphic spid="1" grpId="0">
    <p:bldSub>
      <a:bldChart bld="category"/>
    </p:bldSub>
  </p:bldGraphic>
</p:bldLst>

end example]

Parent Elements

timing (§19.3.1.48)

Child Elements

Subclause

bldDgm (Build Diagram)

§19.5.12

bldGraphic (Build Graphics)

§19.5.13

bldOleChart (Build Embedded Chart)

§19.5.15

bldP (Build Paragraph)

§19.5.16

[Note: The W3C XML Schema definition of this element’s content model (CT_BuildList) is located in §A.3. end note]

© ISO/IEC29500: 2008.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

BuildList Members

DocumentFormat.OpenXml.Presentation Namespace