码迷,mamicode.com
首页 > 其他好文 > 详细

word 替换文本框

时间:2016-09-23 13:19:20      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

创建以下宏  

Dim mShape As Shape
Dim tmpString As String
For Each mShape In ActiveDocument.Shapes
If mShape.Type = msoTextBox Then
tmpString = mShape.TextFrame.TextRange.Text
mShape.TextFrame.TextRange.Text = Replace(tmpString, "查找内容", "替换内容")
End If
Next
End Sub

  

word 替换文本框

标签:

原文地址:http://www.cnblogs.com/mybuilder/p/5899280.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!