Find.Found 屬性 (Word)
True 是表示 如果搜尋會產生相符項目。 唯讀的 Boolean。
expression。 Found
表達 代表 'Find' 物件的變數。
本範例會先從尋找準則中移除格式設定,再搜尋選取範圍。 如果找到粗體格式設定的 "Hello",則會選取整個段落並且複製到 [剪貼簿]。
With Selection.Find
.ClearFormatting
.Font.Bold = True
.Execute FindText:="Hello", Format:=True, Forward:=True
If .Found = True Then
.Parent.Expand Unit:=wdParagraph
.Parent.Copy
End If
End With
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。