Bookmark.EndnoteOptions-Eigenschaft
Ruft ein EndnoteOptions-Objekt ab, das die Endnoten im Bookmark-Steuerelement darstellt.
Namespace: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word (in Microsoft.Office.Tools.Word.dll)
Syntax
'Declaration
ReadOnly Property EndnoteOptions As EndnoteOptions
Get
EndnoteOptions EndnoteOptions { get; }
Eigenschaftswert
Typ: Microsoft.Office.Interop.Word.EndnoteOptions
Ein EndnoteOptions-Objekt, das die Endnoten im Bookmark-Steuerelement darstellt.
Beispiele
Im folgenden Codebeispiel wird dem ersten Absatz ein Bookmark-Steuerelement mit Text hinzugefügt. Anschließend wird die Nummer, mit der die Endnoten im Lesezeichen beginnen, auf fünf und das Format der Nummer auf wdNoteNumberStyleArabic festgelegt.
Dieses Beispiel bezieht sich auf eine Anpassung auf Dokumentebene.
Private Sub BookmarkEndnoteOptions()
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."
Bookmark1.EndnoteOptions.NumberStyle = Word.WdNoteNumberStyle.wdNoteNumberStyleArabic
Bookmark1.EndnoteOptions.StartingNumber = 5
Bookmark1.Endnotes.Location = Word.WdEndnoteLocation _
.wdEndOfSection
Me.Endnotes.Add(Bookmark1.Range, "", "This is the text of the Endnote")
End Sub
private void BookmarkEndnoteOptions()
{
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.";
bookmark1.EndnoteOptions.NumberStyle =
Word.WdNoteNumberStyle.wdNoteNumberStyleArabic;
bookmark1.EndnoteOptions.StartingNumber = 5;
bookmark1.Endnotes.Location = Word.WdEndnoteLocation
.wdEndOfSection;
object Reference = "";
object Text = "This is the text of the Endnote.";
this.Endnotes.Add(bookmark1.Range, ref Reference, ref Text);
}
.NET Framework-Sicherheit
- Volle Vertrauenswürdigkeit für den unmittelbaren Aufrufer. Dieser Member kann von nur teilweise vertrauenswürdigem Code nicht verwendet werden. Weitere Informationen finden Sie unter Verwenden von Bibliotheken aus teilweise vertrauenswürdigem Code.