Bookmark.InRange, méthode
Détermine si le Range auquel la méthode est appliquée est contenu dans le contrôle Bookmark.
Espace de noms : Microsoft.Office.Tools.Word
Assembly : Microsoft.Office.Tools.Word (dans Microsoft.Office.Tools.Word.dll)
Syntaxe
'Déclaration
Function InRange ( _
Range As Range _
) As Boolean
bool InRange(
Range Range
)
Paramètres
- Range
Type : Microsoft.Office.Interop.Word.Range
Objet Range.
Valeur de retour
Type : System.Boolean
true si le Range spécifié se trouve dans le contrôle Bookmark auquel la méthode est appliquée ; sinon, false.
Notes
Cette méthode détermine si le Range est contenu dans le contrôle Bookmark en comparant les positions des caractères de début et de fin, ainsi que le type d'article.
Exemples
L'exemple de code suivant ajoute un contrôle Bookmark avec le texte au document, puis vérifie pour déterminer si le signet se trouve ou non dans la même plage que le paragraphe 1. Ce code affiche ensuite les résultats dans un message.
Cet exemple illustre une personnalisation au niveau du document.
Private Sub BookmarkInRange()
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.InRange(Me.Paragraphs(1).Range) Then
MessageBox.Show("The bookmark is in the first paragraph.")
Else
MessageBox.Show("The bookmark is not in the first paragraph.")
End If
End Sub
private void BookmarkInRange()
{
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.InRange(this.Paragraphs[1].Range))
{
MessageBox.Show("The bookmark is in the first paragraph.");
}
else
{
MessageBox.Show("The bookmark is not in 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.