BuildingBlockGallery
Contents
[
Hide
]StructuredDocumentTag.BuildingBlockGallery property
Specifies type of building block for this SDT. Can not be null
.
public string BuildingBlockGallery { get; set; }
Remarks
Accessing this property will only work for BuildingBlockGallery and DocPartObj SDT types. It is read-only for SDT of the document part type.
For all other SDT types exception will occur.
Examples
Shows how to insert a structured document tag as a building block, and set its category and gallery.
Document doc = new Document();
StructuredDocumentTag buildingBlockSdt =
new StructuredDocumentTag(doc, SdtType.BuildingBlockGallery, MarkupLevel.Block)
{
BuildingBlockCategory = "Built-in",
BuildingBlockGallery = "Table of Contents"
};
doc.FirstSection.Body.AppendChild(buildingBlockSdt);
doc.Save(ArtifactsDir + "StructuredDocumentTag.BuildingBlockCategories.docx");
See Also
- class StructuredDocumentTag
- namespace Aspose.Words.Markup
- assembly Aspose.Words