样式是word的文档的格式基础,学好word的最关键的是要掌握样式的使用。
word vba 中样式的对象为Style,接下来介绍用vba处理word的样式的方法
一、遍历当前文档中的word样式
Sub QQ1722187970() Dim oStyle As Style For Each oStyle In Word.ActiveDocument.Styles With oStyle '遍历获取样式的名称 Debug.Print .NameLocal End With Next End Sub
二、设置样式
Sub QQ1722187970() Dim oStyle As Style Dim oP As Paragraph Set oP = Word.ActiveDocument.Paragraphs(1) '设置某个段落的样式 oP.Style = "正文" End Sub
发表评论