Bookmark.SelectionChange, événement
Se produit lorsque la sélection à l'intérieur du contrôle Bookmark change.
Espace de noms : Microsoft.Office.Tools.Word
Assembly : Microsoft.Office.Tools.Word (dans Microsoft.Office.Tools.Word.dll)
Syntaxe
'Déclaration
Event SelectionChange As SelectionEventHandler
event SelectionEventHandler SelectionChange
Notes
Cet événement se déclenche lorsque la sélection va au contrôle Bookmark ou change dans le contrôle.
Exemples
L'exemple de code suivant ajoute au document un contrôle Bookmark avec du texte, puis crée un gestionnaire d'événements SelectionChange.Un message est affiché lorsque le curseur est déplacé dans le signet.
Cet exemple illustre une personnalisation au niveau du document.
WithEvents Bookmark5 As Microsoft.Office.Tools.Word.Bookmark
Private Sub BookmarkSelectionChange()
Me.Paragraphs(1).Range.InsertParagraphBefore()
Bookmark5 = Me.Controls.AddBookmark(Me.Paragraphs(1).Range, _
"Bookmark5")
Bookmark5.Text = "This is a sample bookmark."
End Sub
Private Sub Bookmark5_SelectionChange(ByVal sender As Object, _
ByVal e As Microsoft.Office.Tools.Word.SelectionEventArgs) _
Handles Bookmark5.SelectionChange
MessageBox.Show("The selection has changed within Bookmark1.")
End Sub
Microsoft.Office.Tools.Word.Bookmark bookmark5;
private void BookmarkSelectionChange()
{
this.Paragraphs[1].Range.InsertParagraphBefore();
bookmark5 = this.Controls.AddBookmark(this.Paragraphs[1]
.Range, "bookmark5");
bookmark5.Text = "This is a sample bookmark.";
bookmark5.SelectionChange += new Microsoft.Office.Tools.Word.SelectionEventHandler(bookmark5_SelectionChange);
}
void bookmark5_SelectionChange(object sender, Microsoft.Office.Tools.Word.SelectionEventArgs e)
{
MessageBox.Show("The selection has changed within bookmark1.");
}
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.