BuildingBlockGallery
İçindekiler
[
Saklamak
]BuildingBlockGallery enumeration
Bir yapı bloğunun sınıflandırıldığı önceden tanımlanmış galeriyi belirtir.
public enum BuildingBlockGallery
değerler
İsim | Değer | Tanım |
---|---|---|
All | 0 | Bu sözlük belgesi girişinin tüm olası galeri sınıflandırma değerleriyle ilişkilendirileceğini belirtir. |
AutoText | 1 | |
Bibliography | 2 | |
CoverPage | 3 | |
CustomAutoText | 4 | |
CustomBibliography | 5 | |
CustomCoverPage | 6 | |
CustomEquations | 7 | |
CustomFooters | 8 | |
CustomHeaders | 9 | |
Custom1 | 10 | |
Custom2 | 11 | |
Custom3 | 12 | |
Custom4 | 13 | |
Custom5 | 14 | |
CustomPageNumber | 15 | |
CustomPageNumberAtBottom | 16 | |
CustomPageNumberAtMargin | 17 | |
CustomPageNumberAtTop | 18 | |
CustomQuickParts | 19 | |
CustomTableOfContents | 20 | |
CustomTables | 21 | |
CustomTextBox | 22 | |
CustomWatermarks | 23 | |
NoGallery | 24 | |
QuickParts | 25 | |
Equations | 26 | |
Footers | 27 | |
Headers | 28 | |
PageNumber | 29 | |
PageNumberAtBottom | 30 | |
PageNumberAtMargin | 31 | |
PageNumberAtTop | 32 | |
StructuredDocumentTagPlaceholderText | 33 | |
TableOfContents | 34 | |
Tables | 35 | |
TextBox | 36 | |
Watermarks | 37 | |
Default | 0 | Şununla aynıAll . |
Notlar
karşılık gelirST_DocPartGalerisi OOXML yazın.
Örnekler
Bir sözlük belgesinde yapı taşlarına erişmenin yollarını gösterir.
public void GlossaryDocument()
{
Document doc = new Document();
GlossaryDocument glossaryDoc = new GlossaryDocument();
glossaryDoc.AppendChild(new BuildingBlock(glossaryDoc) { Name = "Block 1" });
glossaryDoc.AppendChild(new BuildingBlock(glossaryDoc) { Name = "Block 2" });
glossaryDoc.AppendChild(new BuildingBlock(glossaryDoc) { Name = "Block 3" });
glossaryDoc.AppendChild(new BuildingBlock(glossaryDoc) { Name = "Block 4" });
glossaryDoc.AppendChild(new BuildingBlock(glossaryDoc) { Name = "Block 5" });
Assert.AreEqual(5, glossaryDoc.BuildingBlocks.Count);
doc.GlossaryDocument = glossaryDoc;
// Yapı taşlarına erişmenin çeşitli yolları vardır.
// 1 - Koleksiyondaki ilk/son yapı taşlarını alın:
Assert.AreEqual("Block 1", glossaryDoc.FirstBuildingBlock.Name);
Assert.AreEqual("Block 5", glossaryDoc.LastBuildingBlock.Name);
// 2 - Dizine göre bir yapı taşı alın:
Assert.AreEqual("Block 2", glossaryDoc.BuildingBlocks[1].Name);
Assert.AreEqual("Block 3", glossaryDoc.BuildingBlocks.ToArray()[2].Name);
// 3 - Galeri, ad ve kategoriyle eşleşen ilk yapı taşını alın:
Assert.AreEqual("Block 4",
glossaryDoc.GetBuildingBlock(BuildingBlockGallery.All, "(Empty Category)", "Block 4").Name);
// Bunu özel bir ziyaretçi kullanarak yapacağız,
// bu, GlossaryDocument'teki her BuildingBlock'a benzersiz bir GUID verecektir
GlossaryDocVisitor visitor = new GlossaryDocVisitor();
glossaryDoc.Accept(visitor);
Console.WriteLine(visitor.GetText());
// Microsoft Word'de yapı taşlarına "Ekle" --> aracılığıyla erişebiliriz. "Hızlı Parçalar" -> "Yapı Taşları Organizatörü".
doc.Save(ArtifactsDir + "BuildingBlocks.GlossaryDocument.dotx");
}
/// <summary>
/// Ziyaret edilen bir sözlük belgesindeki her yapı taşına benzersiz bir GUID verir.
/// GUID yapı bloğu çiftlerini bir sözlükte saklar.
/// </summary>
public class GlossaryDocVisitor : DocumentVisitor
{
public GlossaryDocVisitor()
{
mBlocksByGuid = new Dictionary<Guid, BuildingBlock>();
mBuilder = new StringBuilder();
}
public string GetText()
{
return mBuilder.ToString();
}
public Dictionary<Guid, BuildingBlock> GetDictionary()
{
return mBlocksByGuid;
}
public override VisitorAction VisitGlossaryDocumentStart(GlossaryDocument glossary)
{
mBuilder.AppendLine("Glossary document found!");
return VisitorAction.Continue;
}
public override VisitorAction VisitGlossaryDocumentEnd(GlossaryDocument glossary)
{
mBuilder.AppendLine("Reached end of glossary!");
mBuilder.AppendLine("BuildingBlocks found: " + mBlocksByGuid.Count);
return VisitorAction.Continue;
}
public override VisitorAction VisitBuildingBlockStart(BuildingBlock block)
{
block.Guid = Guid.NewGuid();
mBlocksByGuid.Add(block.Guid, block);
return VisitorAction.Continue;
}
public override VisitorAction VisitBuildingBlockEnd(BuildingBlock block)
{
mBuilder.AppendLine("\tVisited block \"" + block.Name + "\"");
mBuilder.AppendLine("\t Type: " + block.Type);
mBuilder.AppendLine("\t Gallery: " + block.Gallery);
mBuilder.AppendLine("\t Behavior: " + block.Behavior);
mBuilder.AppendLine("\t Description: " + block.Description);
return VisitorAction.Continue;
}
private readonly Dictionary<Guid, BuildingBlock> mBlocksByGuid;
private readonly StringBuilder mBuilder;
}
Ayrıca bakınız
- ad alanı Aspose.Words.BuildingBlocks
- toplantı Aspose.Words