Aracılığıyla paylaş


Bookmark.InStory Yöntem

Belirleyen Bookmark bu yöntemi uygulanan denetimidir tarafından belirtilen aralıkla aynı öyküdeki Range bağımsız değişkeni.

Ad alanı:  Microsoft.Office.Tools.Word
Derleme:  Microsoft.Office.Tools.Word (Microsoft.Office.Tools.Word.dll içinde)

Sözdizimi

'Bildirim
Function InStory ( _
    Range As Range _
) As Boolean
bool InStory(
    Range Range
)

Parametreler

Dönüş Değeri

Tür: System.Boolean
true yoksa Bookmark bu yöntemi uygulanan denetimidir tarafından belirtilen aralıkla aynı öyküdeki Range bağımsız değişken; Aksi takdirde, false.

Örnekler

Aşağıdaki kod örneği ekler bir Bookmark belge ve olup olmadığı, ilk paragraf olarak aynı öyküdeki öğrenmek için denetimler metinle birlikte denetim.Sonuçları daha sonra bir ileti kutusunda görüntülenir.

Bu örnek, belge düzeyinde özelleştirme içindir

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 Güvenliği

Ayrıca bkz.

Başvuru

Bookmark Arabirim

Microsoft.Office.Tools.Word Ad Alanı