Skip to content

Latest commit

 

History

History
66 lines (44 loc) · 1.59 KB

Word.Find.ClearAllFuzzyOptions.md

File metadata and controls

66 lines (44 loc) · 1.59 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Find.ClearAllFuzzyOptions method (Word)
vbawd10.chm162529313
vbawd10.chm162529313
Word.Find.ClearAllFuzzyOptions
cf0b33a4-bfcc-36f9-e4b4-b98b3c628c0d
06/08/2017
medium

Find.ClearAllFuzzyOptions method (Word)

Clears all nonspecific search options associated with Japanese text.

Syntax

expression. ClearAllFuzzyOptions

expression Required. A variable that represents a 'Find' object.

Remarks

This method sets the following properties to False :

| MatchFuzzyAY| MatchFuzzyKanji| | MatchFuzzyBV| MatchFuzzyKiKu| | MatchFuzzyByte| MatchFuzzyOldKana| | MatchFuzzyCase| MatchFuzzyProlongedSoundMark| | MatchFuzzyDash| MatchFuzzyPunctuation| | MatchFuzzyDZ| MatchFuzzySmallKana| | MatchFuzzyHF| MatchFuzzySpace| | MatchFuzzyHiragana| MatchFuzzyTC| | MatchFuzzyIterationMark| MatchFuzzyZJ|

Example

This example clears all nonspecific search options before executing a search in the selected range. If the word "バイオリン" is formatted as bold, the entire paragraph will be selected and copied to the Clipboard.

With Selection.Find 
    .ClearFormatting 
    .ClearAllFuzzyOptions 
    .Font.Bold = True 
    .Execute FindText:="バイオリン", Format:=True, Forward:=True 
    If .Found = True Then 
        .Parent.Expand Unit:=wdParagraph 
        .Parent.Copy 
    End If 
End With

See also

Find Object

[!includeSupport and feedback]