Word) (Find.Text 屬性
會傳回或設定要尋找的文字。 讀取/寫入的 String。
運算式。文本
表達 代表 'Find' 物件的變數。
Text 屬性會傳回選取範圍或範圍的純文字、 以未格式化的文字。 當您設定此屬性時,已被取代的文字範圍或選取範圍。
此範例會以 "Goodbye" 取代目前文件中的 "Hello"。
Set myRange = ActiveDocument.Content
With myRange.Find
.ClearFormatting
.Replacement.ClearFormatting
.Text = "Hello"
.Replacement.Text = "Goodbye"
.Execute Replace:=wdReplaceAll
End With
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。