word 替换文本框
Posted mybuilder
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了word 替换文本框相关的知识,希望对你有一定的参考价值。
创建以下宏
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 替换文本框的主要内容,如果未能解决你的问题,请参考以下文章
word VBA如何实现TextBox中的文字居中对齐,文本框有相关的属性么?谢谢