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
- Range
Type : Microsoft.Office.Interop.Word.Range
Objet Range dont l'article est comparé à l'article qui contient le contrôle Bookmark.
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
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.