Partager via


Bookmark.InStory, méthode

Détermine si le contrôle Bookmark auquel cette méthode est appliquée est dans le même article que la plage spécifiée par l'argument Range.

Espace de noms :  Microsoft.Office.Tools.Word
Assembly :  Microsoft.Office.Tools.Word (dans Microsoft.Office.Tools.Word.dll)

Syntaxe

'Déclaration
Function InStory ( _
    Range As Range _
) As Boolean
bool InStory(
    Range Range
)

Paramètres

Valeur de retour

Type : System.Boolean
true si le contrôle Bookmark auquel cette méthode est appliquée est dans le même article que la plage spécifiée par l'argument Range ; sinon, false.

Exemples

L'exemple de code suivant ajoute au document un contrôle Bookmark avec du texte, puis vérifie s'il se trouve ou non dans le même article que le premier paragraphe.Les résultats sont ensuite affichés dans un message.

Cet exemple illustre une personnalisation au niveau du document.

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.");
    }
}

Sécurité .NET Framework

Voir aussi

Référence

Bookmark Interface

Microsoft.Office.Tools.Word, espace de noms