ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 85|回复: 1

如何把每6段转换成一张ppt,保留原文字的颜色下划线和粗体格式

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-11-12 09:18 | 显示全部楼层 |阅读模式
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
本帖最后由 zzpsx 于 2024-11-13 13:07 编辑

每6段转换成一张ppt,保留原文字的颜色下划线和粗体格式.zip (18.81 KB, 下载次数: 0)

0.png
我自己写的代码,不能粗体,也不能每页六段,只能每页一段。请高手斧正

Sub 按段转()
  
    Dim oPPT As Object
    Dim oPPTPres As Object
    Dim oSlide As Object
    Dim strText As String
    Dim arrSections As Variant
    Dim strSection As String
    Dim i As Integer
    Dim j As Integer
    Dim leftPosition As Single
    Dim topPosition As Single
    Dim slideWidth As Single
    Dim slideHeight As Single
    Dim a As Object ' Shape 对象
    Dim wordDoc As Document
    Dim wordRange As Range
    Dim pptTextRange As Object
    Dim currentPara As Range
   
    ' 获取当前活动的 Word 文档
    Set wordDoc = ActiveDocument
   
    ' 创建 PowerPoint 应用实例
    Set oPPT = CreateObject("PowerPoint.Application")
    oPPT.Visible = True

    ' 创建新的 PowerPoint 演示文稿
    Set oPPTPres = oPPT.Presentations.Add

    ' 遍历 Word 文档中的段落(假设每个段落对应一个幻灯片)
    For i = 1 To wordDoc.Paragraphs.count
        Set currentPara = wordDoc.Paragraphs(i).Range
        
        ' 检查段落是否为空
        If Trim(currentPara.text) <> vbNullString Then
            ' 在 PowerPoint 中添加新幻灯片
            Set oSlide = oPPTPres.Slides.Add(i, 1) ' 添加标题幻灯片版式

            ' 自定义文本框位置
            leftPosition = 20 ' 从左边距 20 磅
            topPosition = 10  ' 从上边距 10 磅
            slideWidth = oSlide.Master.Width - leftPosition * 2 ' 根据幻灯片宽度调整
            slideHeight = oSlide.Master.Height - topPosition * 2 ' 根据幻灯片高度调整

            ' 添加文本框
            Set a = oSlide.Shapes.AddTextbox(Orientation:=msoTextOrientationHorizontal, _
                                               Left:=leftPosition, Top:=topPosition, Width:=slideWidth, Height:=slideHeight)
            
            ' 设置文本内容
            a.TextFrame.TextRange.text = currentPara.text
            
            ' 遍历 Word 文档中的每个字符,并将其格式应用到 PowerPoint 中
            For j = 1 To currentPara.Characters.count
                Set wordRange = currentPara.Characters(j)
               
                ' 设置字体颜色
                a.TextFrame.TextRange.Characters(j).Font.Color.RGB = wordRange.Font.Color
               
                ' 设置下划线
                If wordRange.Font.Underline <> wdUnderlineNone Then
                    a.TextFrame.TextRange.Characters(j).Font.Underline = msoTrue
                End If
            Next j

            ' 设置字体和大小
            a.TextFrame.TextRange.Font.Name = "Arial" ' 可以根据需要调整字体
            a.TextFrame.TextRange.Font.Size = 40 ' 设置字体大小
        End If
    Next i

    ' 删除 PPT 中的空形状和特定文本的形状
    For Each oSlide In oPPTPres.Slides
        For j = oSlide.Shapes.count To 1 Step -1
            Set a = oSlide.Shapes(j)
            If a.HasTextFrame And Len(a.TextFrame.TextRange.text) = 0 Then
                a.Delete
            ElseIf a.HasTextFrame And a.TextFrame.TextRange.text = "单击此处添加副标题" Then
                a.Delete
            End If
        Next j
    Next oSlide

    ' 清理
    Set oSlide = Nothing
    Set oPPTPres = Nothing
    Set oPPT = Nothing
End Sub



TA的精华主题

TA的得分主题

 楼主| 发表于 2024-11-13 13:11 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
顶一下,请高手点石成金。
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-21 19:19 , Processed in 0.030648 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表