我试图在大量的 word 文档中找到项目符号列表的所有实例,并根据我们公司的品牌为其分配样式。
我已经非常接近了,下面的宏在选择的第一个项目符号列表中选择第一行,并为其分配我需要的样式。
我只需要一些帮助来选择文档中的所有项目符号。
Sub findbullets22()
'findbullets22 Macro
Dim oPara As Word.Paragraph
With Selection
For Each oPara In .Paragraphs
If oPara.Range.ListFormat.ListType = _
WdListType.wdListBullet Then
oPara.Range.Select
End If
Next
End With
Selection.Style = ActiveDocument.Styles("List Paragraph")
End Sub