DocumentBase.Footnotes 属性

获取一个 Footnotes 集合,该集合表示文档中的所有脚注。

命名空间:  Microsoft.Office.Tools.Word
程序集:  Microsoft.Office.Tools.Word.v4.0.Utilities(在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)

语法

声明
Public ReadOnly Property Footnotes As Footnotes
public Footnotes Footnotes { get; }

属性值

类型:Microsoft.Office.Interop.Word.Footnotes
一个 Footnotes 集合,该集合表示文档中的所有脚注。

示例

下面的代码示例向第一个段落添加文本,然后向第二个单词添加脚注。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。

Private Sub DocumentFootnotes()
    Dim text As Object = "Sample footnote text."
    Me.Paragraphs(1).Range.InsertParagraphAfter()
    Me.Paragraphs(1).Range.Text = "This is sample paragraph text."
    Me.Footnotes.Location = Word.WdFootnoteLocation.wdBeneathText
    Me.Footnotes.NumberStyle = Word.WdNoteNumberStyle.wdNoteNumberStyleLowercaseRoman
    Me.Footnotes.Add(Me.Paragraphs(1).Range.Words(2).Characters(2), , text)
End Sub
private void DocumentFootnotes()
{
    object text = "Sample footnote text.";
    this.Paragraphs[1].Range.InsertParagraphAfter();
    this.Paragraphs[1].Range.Text = "This is sample paragraph text.";
    this.Footnotes.Location = Word.WdFootnoteLocation.wdBeneathText;
    this.Footnotes.NumberStyle = Word.WdNoteNumberStyle.wdNoteNumberStyleLowercaseRoman;
    this.Footnotes.Add(this.Paragraphs[1].Range.Words[2].Characters[2], ref missing, ref text);
}

.NET Framework 安全性

请参见

参考

DocumentBase 类

Microsoft.Office.Tools.Word 命名空间