Word) (取代物件
代表尋找及取代作業取代準則。 屬性及方法將 Replacement 物件會對應至 [ 尋找及取代] 對話方塊中的選項。
使用 取代 若要傳回 Replacement 物件的屬性。 下列範例會將下一個出現的字"hi"取代"hello"。
With Selection.Find
.Text = "hi"
.ClearFormatting
.Replacement.Text = "hello"
.Replacement.ClearFormatting
.Execute Replace:=wdReplaceOne, Forward:=True
End With
尋找及取代格式,設定為空字串尋找文字及取代文字 ("") 和設定 執行 [格式] 引數 設 為 True 的方法。 下列範例會移除所有粗體格式設定使用中文件。 Bold 屬性為 True 的 尋找 物件 」 和 「 FalseReplacement 物件。
With ActiveDocument.Content.Find
.ClearFormatting
.Font.Bold = True
.Text = ""
With .Replacement
.ClearFormatting
.Font.Bold = False
.Text = ""
End With
.Execute Format:=True, Replace:=wdReplaceAll
End With
名稱 |
---|
Application |
Creator |
Font |
圖文框 |
Highlight |
LanguageID |
LanguageIDFarEast |
NoProofing |
ParagraphFormat |
Parent |
Style |
Text |
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。