返回介绍

ApplyPictureBullet 方法

发布于 2019-09-29 09:53:48 字数 1839 浏览 932 评论 0 收藏 0

用图片项目符号设置段落或段落区域的格式。

expression.ApplyPictureBullet(FileName)

expression 必需。该表达式返回“应用于”列表中的一个对象。

FileNameString 类型,必需。图片文件的路径和文件名。

示例

本示例创建一个具有列表的新文档,并将图片符号列表格式应用于除首段和末段外的所有段落。

Sub ApplyPictureBulletsToParagraphs()
    Dim docNew As Document
    Dim rngRange As Range
    Dim lstTemplate As ListTemplate
    Dim intPara As Integer
    Dim intCount As Integer

    'Set the initial value of object variables
    Set docNew = Documents.Add

    'Add paragraphs to the new document, including eight list items
    With Selection
        .TypeText Text:="This is an introductory paragraph."
        .TypeParagraph
    End With
    Do Until intPara = 8
        With Selection
            .TypeText Text:="This is a list item."
            .TypeParagraph
        End With
        intPara = intPara + 1
    Loop
    Selection.TypeText Text:="This is a concluding paragraph."

    'Count the total number of paragraphs in the document
    intCount = docNew.Paragraphs.Count

    'Set the range to include all paragraphs in the
    'document except the first and the last
    Set rngRange = docNew.Range( _
        Start:=ActiveDocument.Paragraphs(2).Range.Start, _
        End:=ActiveDocument.Paragraphs(intCount - 1).Range.End)

    'Format the list template as a bullet
    Set lstTemplate = ListGalleries(Index:=wdBulletGallery) _
        .ListTemplates(7)

    'Format list with a picture bullet
    lstTemplate.ListLevels(1).ApplyPictureBullet _
                FileName:="c:\pictures\bluebullet.gif"

    'Apply the list format settings to the range
    rngRange.ListFormat.ApplyListTemplate _
        ListTemplate:=lstTemplate
End Sub

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

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

发布评论

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