Bookmark.Relocate, méthode
En mode plan, déplace les paragraphes du contrôle Bookmark après le premier paragraphe visible suivant ou avant le premier paragraphe visible précédent.
Espace de noms : Microsoft.Office.Tools.Word
Assembly : Microsoft.Office.Tools.Word (dans Microsoft.Office.Tools.Word.dll)
Syntaxe
'Déclaration
Sub Relocate ( _
Direction As Integer _
)
void Relocate(
int Direction
)
Paramètres
- Direction
Type : System.Int32
WdRelocate.Direction du déplacement.
Notes
Le corps de texte ne se déplace avec un titre que s'il est réduit en mode plan ou que s'il fait partie du contrôle Bookmark.
Exemples
L'exemple de code suivant ajoute du texte au premier paragraphe, puis un contrôle Bookmark avec du texte au deuxième paragraphe. Le code déplace ensuite le deuxième signet vers le premier paragraphe.
Cet exemple illustre une personnalisation au niveau du document.
Private Sub BookmarkRelocate()
Me.Paragraphs(1).Range.InsertParagraphBefore()
Me.Paragraphs(1).Range.InsertParagraphBefore()
Me.Paragraphs(1).Range.Text = "This is sample text. "
Dim Bookmark1 As Microsoft.Office.Tools.Word.Bookmark = _
Me.Controls.AddBookmark(Me.Paragraphs(2).Range, "Bookmark1")
Bookmark1.Text = "This is the text of the bookmark."
Me.ActiveWindow.View.Type = Word.WdViewType.wdOutlineView
Bookmark1.Relocate(Word.WdRelocate.wdRelocateUp)
End Sub
private void BookmarkRelocate()
{
this.Paragraphs[1].Range.InsertParagraphBefore();
this.Paragraphs[1].Range.InsertParagraphBefore();
this.Paragraphs[1].Range.Text = "This is sample text. ";
Microsoft.Office.Tools.Word.Bookmark bookmark1 =
this.Controls.AddBookmark(this.Paragraphs[2].Range,
"bookmark1");
bookmark1.Text = "This is the text of the bookmark.";
this.ActiveWindow.View.Type = Word.WdViewType.wdOutlineView;
bookmark1.Relocate((int)Word.WdRelocate.wdRelocateUp);
}
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.