目录

工欲善其事

实践出真知

活跃标签: linux java mysql 待分类 js windows win10 springboot pdf 电路 docker idea esp32 vue macOS nginx Arduino git maven 硬件资料

存档:

office 宏获取文档中的字体

代码如下:

Public Sub 列出所有字体_一闪流溢()

On Error Resume Next

Application.ScreenUpdating = 0

Dim 所有字体$

Set 文档 = ActiveDocument

所有字体 = 获得字体(文档)

Documents.Add

ActiveDocument.Range.InsertBefore "一闪流溢提示您,刚才文档中的字体有:" & vbLf & 所有字体

Application.ScreenUpdating = 1

End Sub

Private Function 获得字体(ByVal 当前文档 As Document) As String

Dim 数量%, 所有字体$, 字体类型$, 段落 As Paragraph, 字符 As Words

For Each 段落 In 当前文档.Paragraphs

For 数量 = 1 To 段落.Range.Characters.Count

字体类型 = 段落.Range.Characters(数量).Font.Name

If InStr(1, 所有字体, 字体类型) = 0 Then

所有字体 = 所有字体 & 字体类型 & vbLf

End If

Next

Next

获得字体 = 所有字体

End Function

标题:office 宏获取文档中的字体
作者:llilei
地址:http://solo.llilei.work/articles/2024/10/23/1729674918847.html