InsertParagraph

DocumentBuilder.InsertParagraph method

在文档中插入段落分隔符。

public Paragraph InsertParagraph()

返回值

刚刚插入的段落节点。它是同一个节点CurrentParagraph

评论

当前段落格式由ParagraphFormat财产被使用。

将当前段落分成两部分。插入段落后,光标将放置在新段落的开头。

如果无法在当前光标位置插入段落分隔符,则会引发异常。

例子

演示如何在文档中插入段落。

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

Font font = builder.Font;
font.Size = 16;
font.Bold = true;
font.Color = Color.Blue;
font.Name = "Arial";
font.Underline = Underline.Dash;

ParagraphFormat paragraphFormat = builder.ParagraphFormat;
paragraphFormat.FirstLineIndent = 8;
paragraphFormat.Alignment = ParagraphAlignment.Justify;
paragraphFormat.AddSpaceBetweenFarEastAndAlpha = true;
paragraphFormat.AddSpaceBetweenFarEastAndDigit = true;
paragraphFormat.KeepTogether = true;

// “Writeln”方法在附加文本后结束段落
// 然后开始一个新行,添加一个新段落。
builder.Writeln("Hello world!");

Assert.True(builder.CurrentParagraph.IsEndOfDocument);

也可以看看