共用方式為


Bookmark.InStory 方法

判斷這個方法所套用至的 Bookmark 控制項,是否和 Range 引數所指定的範圍位在相同的 Story 中。

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

語法

'宣告
Function InStory ( _
    Range As Range _
) As Boolean
bool InStory(
    Range Range
)

參數

傳回值

型別:System.Boolean
如果這個方法所套用至的 Bookmark 控制項和 Range 引數所指定的範圍位在相同的 Story 中,則為 true,否則為 false。

範例

下列程式碼範例將有文字的 Bookmark 控制項加入至文件,然後進行檢查以找出控制項是否與第一個段落位在相同的 Story 中。 結果接著會顯示在訊息方塊中。

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

Private Sub BookmarkInStory()
    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 sample bookmark text."

    If Bookmark1.InStory(Me.Paragraphs(1).Range) Then
        MessageBox.Show("The bookmark is in the same story as " _
            & "the first paragraph.")
    Else
        MessageBox.Show("The bookmark is not in the same story " _
            & "as the first paragraph.")
    End If

End Sub
private void BookmarkInStory()
{
    this.Paragraphs[1].Range.InsertParagraphBefore();
    Microsoft.Office.Tools.Word.Bookmark bookmark1 =
        this.Controls.AddBookmark(this.Paragraphs[1].Range,
        "bookmark1");
    bookmark1.Text = "This is sample bookmark text.";

    if (bookmark1.InStory(this.Paragraphs[1].Range))
    {
        MessageBox.Show("The bookmark is in the same story as "+
            "the first paragraph.");
    }
    else
    {
        MessageBox.Show("The bookmark is not in the same story " +
            "as the first paragraph.");
    }
}

.NET Framework 安全性

請參閱

參考

Bookmark 介面

Microsoft.Office.Tools.Word 命名空間