Share via


Bookmark.Sentences 屬性

取得 Sentences 集合,表示在 Bookmark 控制項中的所有句子。

命名空間:  Microsoft.Office.Tools.Word
組件:  Microsoft.Office.Tools.Word (在 Microsoft.Office.Tools.Word.dll 中)

語法

'宣告
ReadOnly Property Sentences As Sentences
Sentences Sentences { get; }

屬性值

型別:Microsoft.Office.Interop.Word.Sentences
Sentences 集合,表示在 Bookmark 控制項中的所有句子。

範例

下列程式碼範例將有文字的 Bookmark 控制項加入至文件,然後選取在書籤中的第一個句子。

這是示範文件層級自訂的範例。

Private Sub BookmarkSentences()

    Me.Paragraphs(1).Range.InsertParagraphBefore()
    Dim Bookmark1 As Microsoft.Office.Tools.Word.Bookmark = _
        Me.Controls.AddBookmark(Me.Paragraphs(1).Range, "Bookmark1")

    Bookmark1.Text = "This is the first sentence of bookmark text." _
        & " And this is the second sentence."
    Bookmark1.Sentences.First.Select()

End Sub
private void BookmarkSentences()
{
    this.Paragraphs[1].Range.InsertParagraphBefore();

    Microsoft.Office.Tools.Word.Bookmark bookmark1 =
        this.Controls.AddBookmark(this.Paragraphs[1].Range,
        "bookmark1");
    bookmark1.Text = "This is the first sentence of bookmark text." +
        " And this is the second sentence.";
    bookmark1.Sentences.First.Select();
}

.NET Framework 安全性

請參閱

參考

Bookmark 介面

Microsoft.Office.Tools.Word 命名空間