查找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 ,运行后会弹出新的窗口
输入字体后,会列出所有的文字位置

相关推荐
构建的乐趣12 小时前
wps PPT debug
powerpoint·wps
一棵开花的树,枝芽无限靠近你2 天前
【PPTist】开源PPT编辑器初体验
编辑器·powerpoint
MindMaster User4 天前
如何在MindMaster思维导图中制作PPT课件?
powerpoint·思维导图·优惠券·mindmaster
鹧鸪云光伏与储能软件开发4 天前
光伏电站的方案PPT总结
分布式·powerpoint·光伏发电·光伏·光伏计算
doll ~CJ5 天前
一种基于PowerPoint和Photoshop的.gif动图制作方法
powerpoint·photoshop·gif动图
小奥超人8 天前
PPT技巧:如何合并PPT文件?
windows·经验分享·microsoft·powerpoint·办公技巧
@PHARAOH8 天前
HOW - PPT 制作系列(一)
powerpoint
有一只柴犬9 天前
POI实现根据PPTX模板渲染PPT
powerpoint
匆匆整棹还9 天前
已有账号,重装系统激活office后发现没有ppt,word,excel等
word·powerpoint·excel
子非吾喵11 天前
在Element Ui中支持从系统粘贴版中获取图片和PDF,Docx,Doc,PPT等文档
ui·pdf·powerpoint