Bookmark.InsertBreak, méthode
Insère un saut de page, de colonne ou de section 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
Sub InsertBreak ( _
ByRef Type As Object _
)
void InsertBreak(
ref Object Type
)
Paramètres
- Type
Type : System.Object%
Type de saut à insérer.WdBreakType .
Notes
L'appel de cette méthode peut supprimer le contrôle Bookmark.
Paramètres optionnels
Pour plus d'informations sur les paramètres optionnels, consultez Paramètres optionnels dans les solutions Office.
Exemples
L'exemple de code suivant ajoute au document un contrôle Bookmark avec du texte, puis insère un saut de section Page suivante avant le quatrième mot du signet.
Cet exemple illustre une personnalisation au niveau du document.
Private Sub BookmarkInsertBreak()
Me.Paragraphs(1).Range.InsertParagraphBefore()
Dim Bookmark1 As Microsoft.Office.Tools.Word.Bookmark = _
Me.Controls.AddBookmark(Me.Paragraphs(1).Range, "Bookmark1")
Bookmark1.Text = "This text will have a section break."
Bookmark1.Words(4).InsertBreak(Word.WdBreakType _
.wdSectionBreakNextPage)
MessageBox.Show("bookmark1 contains " & _
Bookmark1.Sections.Count.ToString & " sections.")
End Sub
private void BookmarkInsertBreak()
{
this.Paragraphs[1].Range.InsertParagraphBefore();
Microsoft.Office.Tools.Word.Bookmark bookmark1 =
this.Controls.AddBookmark(this.Paragraphs[1].Range,
"bookmark1");
bookmark1.Text = "This text will have a section break.";
object Type = Word.WdBreakType.wdSectionBreakNextPage;
bookmark1.Words[4].InsertBreak(ref Type);
MessageBox.Show("bookmark1 contains " + bookmark1.Sections.Count +
" sections.");
}
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.