CurrentStory

DocumentBuilder.CurrentStory property

Bu bölümde o anda seçili olan hikayeyi getirirDocumentBuilder .

public Story CurrentStory { get; }

Örnekler

Belge oluşturucunun güncel hikayesiyle nasıl çalışılacağını gösterir.

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

// Hikaye, Gövde gibi alt Paragraf düğümlerine sahip bir düğüm türüdür.
Assert.AreEqual(builder.CurrentStory, doc.FirstSection.Body);
Assert.AreEqual(builder.CurrentStory, builder.CurrentParagraph.ParentNode);
Assert.AreEqual(StoryType.MainText, builder.CurrentStory.StoryType);

builder.CurrentStory.AppendParagraph("Text added to current Story.");

// Bir Hikaye aynı zamanda tablolar da içerebilir.
Table table = builder.StartTable();
builder.InsertCell();
builder.Write("Row 1, cell 1");
builder.InsertCell();
builder.Write("Row 1, cell 2");
builder.EndTable();

Assert.IsTrue(builder.CurrentStory.Tables.Contains(table));

Ayrıca bakınız