返回介绍

FootnoteOptions 对象

发布于 2019-09-29 09:50:54 字数 842 浏览 1109 评论 0 收藏 0

多种对象
FootnoteOptions

该对象代表指定给文档中脚注的某区域或所选内容的属性。

使用 FootnoteOptions 对象

使用 Range 或 Selection 对象可返回一个 FootnoteOptions 对象。使用 FootnoteOptions 对象可为文档的不同区域指定不同的脚注属性。例如,可将长文档说明部分的脚注用小写字母显示,而将文档中其余部分的脚注用星号显示。下列示例使用 NumberingRule、NumberStyle 和 StartingNumber 属性设置活动文档中第一节的脚注格式。

Sub BookIntro()
    Dim rngIntro As Range

    'Sets the range as section one of the active document
    Set rngIntro = ActiveDocument.Sections(1).Range

    'Formats the EndnoteOptions properties
    With rngIntro.FootnoteOptions
        .NumberingRule = wdRestartPage
        .NumberStyle = wdNoteNumberStyleLowercaseLetter
        .StartingNumber = 1
    End With
End Sub

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文