private void BookmarkInsertBreak()
{
this.Paragraphs[1].Range.InsertParagraphBefore();
Microsoft.Office.Tools.Word.Bookmark bookmark1 =
this.Controls.AddBookmark(this.Paragraphs[1].Range,
"bookmark1");
bookmark1.Text = "This text will have a section break.";
object Type = Word.WdBreakType.wdSectionBreakNextPage;
//bookmark1.Words[4].InsertBreak(ref Type);//书签中的第四个字后进行分割
bookmark1.Words.Last.InsertBreak(ref Type);//书签内容末尾进行分割
}