查找PPT中某种字体的全部对应文字

本文章的目的是找到某种字体的文字,而不是替换某种字体的文字,也不是将某种字体全部替换为另外一种文字。

第一步在PPT中按下ALT+F11

出现以下窗口

第二步:点击插入->模块

第三步将以下代码输入到窗体中

vba 复制代码
Sub FindTextByFont()
    Dim slide As slide
    Dim shape As shape
    Dim textRange As textRange
    Dim fontName As String
    Dim foundTexts As String
    Dim found As Boolean

    ' 要查找的字体名称
    fontName = InputBox("请输入要查找的字体名称:", "查找字体")

    If fontName = "" Then Exit Sub

    found = False
    foundTexts = "以下是使用字体 """ & fontName & """ 的文字:" & vbCrLf & vbCrLf

    ' 遍历所有幻灯片
    For Each slide In ActivePresentation.Slides
        ' 遍历每张幻灯片上的所有形状
        For Each shape In slide.Shapes
            ' 检查形状是否有文本
            If shape.HasTextFrame Then
                If shape.TextFrame.HasText Then
                    ' 遍历形状的所有文本范围
                    For Each textRange In shape.TextFrame.textRange.Runs
                        ' 如果文本范围的字体名称匹配
                        If textRange.Font.Name = fontName Then
                            found = True
                            foundTexts = foundTexts & "幻灯片 " & slide.SlideIndex & " 中的文字: " & textRange.Text & vbCrLf
                        End If
                    Next textRange
                End If
            End If
        Next shape
    Next slide

    If found Then
        MsgBox foundTexts
    Else
        MsgBox "没有找到使用字体 """ & fontName & """ 的文字。"
    End If
End Sub

第四步:按下F5 ,运行后会弹出新的窗口
输入字体后,会列出所有的文字位置

相关推荐
Bruce-Lan2 天前
WPS PPT中插入实时更新可变的日期
powerpoint·wps
winfredzhang2 天前
使用Python开发PPT文本提取工具
python·powerpoint·提取文字
剑盾云安全专家2 天前
如何用AI智能生成PPT,提升工作效率和创意
人工智能·科技·aigc·powerpoint·软件
白白白白白kkk4 天前
【Office学习】PPT中的图片如何放清晰地放到论文中
学习·powerpoint
HI_Forrest4 天前
20250118 PPT画的论文插图如何导出高分辨率图片:修改电脑注册表
powerpoint·论文
刘鑫磊up6 天前
第九章:演示文稿软件PPT
powerpoint·ppt·演示文稿软件
剑盾云安全专家6 天前
如何让AI助力制作PPT,轻松实现PPT智能生成
人工智能·科技·aigc·powerpoint·软件
小奥超人11 天前
【PPT解密】ppt只读文档怎么改成可编辑文档
数据库·windows·经验分享·powerpoint·办公技巧
Never_every9912 天前
PPT素材免费下载
大数据·前端·powerpoint·ppt
纪伊路上盛名在13 天前
从视频中截取ppt,整理为pdf
笔记·学习·计算机视觉·pdf·powerpoint·音视频·学习方法