Bookmark.EndnoteOptions (Propiedad)
Obtiene un objeto EndnoteOptions que representa las notas al final del control Bookmark.
Espacio de nombres: Microsoft.Office.Tools.Word
Ensamblado: Microsoft.Office.Tools.Word (en Microsoft.Office.Tools.Word.dll)
Sintaxis
'Declaración
ReadOnly Property EndnoteOptions As EndnoteOptions
EndnoteOptions EndnoteOptions { get; }
Valor de propiedad
Tipo: Microsoft.Office.Interop.Word.EndnoteOptions
Un objeto EndnoteOptions que representa las notas al final del control Bookmark.
Ejemplos
El ejemplo de código siguiente agrega un control Bookmark con texto al primer párrafo y, a continuación, establece el número de inicio de las notas al final del marcador en 5 y el estilo del número en wdNoteNumberStyleArabic.
Se trata de un ejemplo para una personalización en el nivel del documento.
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);
}
Seguridad de .NET Framework
- Plena confianza para el llamador inmediato. Un código de confianza parcial no puede utilizar este miembro. Para obtener más información, vea Utilizar bibliotecas de código que no es de plena confianza.