Find.Execute Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Runs the specified find operation.
public bool Execute (ref object FindText, ref object MatchCase, ref object MatchWholeWord, ref object MatchWildcards, ref object MatchSoundsLike, ref object MatchAllWordForms, ref object Forward, ref object Wrap, ref object Format, ref object ReplaceWith, ref object Replace, ref object MatchKashida, ref object MatchDiacritics, ref object MatchAlefHamza, ref object MatchControl);
abstract member Execute : obj * obj * obj * obj * obj * obj * obj * obj * obj * obj * obj * obj * obj * obj * obj -> bool
Public Function Execute (Optional ByRef FindText As Object, Optional ByRef MatchCase As Object, Optional ByRef MatchWholeWord As Object, Optional ByRef MatchWildcards As Object, Optional ByRef MatchSoundsLike As Object, Optional ByRef MatchAllWordForms As Object, Optional ByRef Forward As Object, Optional ByRef Wrap As Object, Optional ByRef Format As Object, Optional ByRef ReplaceWith As Object, Optional ByRef Replace As Object, Optional ByRef MatchKashida As Object, Optional ByRef MatchDiacritics As Object, Optional ByRef MatchAlefHamza As Object, Optional ByRef MatchControl As Object) As Boolean
Parameters
- FindText
- Object
Optional Object. The text to be searched for. Use an empty string ("") to search for formatting only. You can search for special characters by specifying appropriate character codes. For example, "^p" corresponds to a paragraph mark and "^t" corresponds to a tab character.
- MatchCase
- Object
Optional Object. True to specify that the find text be case-sensitive. Corresponds to the Match case check box in the Find and Replace dialog box (Edit menu).
- MatchWholeWord
- Object
Optional Object. True to have the find operation locate only entire words, not text that's part of a larger word. Corresponds to the Find whole words only check box in the Find and Replace dialog box.
- MatchWildcards
- Object
Optional Object. True to have the find text be a special search operator. Corresponds to the Use wildcards check box in the Find and Replace dialog box.
- MatchSoundsLike
- Object
Optional Object. True to have the find operation locate words that sound similar to the find text. Corresponds to the Sounds like check box in the Find and Replace dialog box.
- MatchAllWordForms
- Object
Optional Object. True to have the find operation locate all forms of the find text (for example, "sit" locates "sitting" and "sat"). Corresponds to the Find all word forms check box in the Find and Replace dialog box.
- Forward
- Object
Optional Object. True to search forward (toward the end of the document).
- Wrap
- Object
Optional Object. Controls what happens if the search begins at a point other than the beginning of the document and the end of the document is reached (or vice versa if Forward
is set to False). This argument also controls what happens if there's a selection or range and the search text isn't found in the selection or range.Can be one of the following WdFindWrap constants:wdFindAsk After searching the selection or range, Microsoft Word displays a message asking whether to search the remainder of the document.wdFindContinue The find operation continues if the beginning or end of the search range is reached.wdFindStop The find operation ends if the beginning or end of the search range is reached.
- Format
- Object
Optional Object. True to have the find operation locate formatting in addition to or instead of the find text.
- ReplaceWith
- Object
Optional Object. The replacement text. To delete the text specified by the Find
argument, use an empty string (""). You specify special characters and advanced search criteria just as you do for the Find
argument. To specify a graphic object or other non-text item as the replacement, move the item to the Clipboard and specify "^c" for ReplaceWith
.
- Replace
- Object
Optional Object. Specifies how many replacements are to be made: one, all, or none. Can be any WdReplace constant:wdReplaceAll wdReplaceNone wdReplaceOne
- MatchKashida
- Object
Optional Object. True if find operations match text with matching kashidas in an Arabic language document. This argument may not be available to you, depending on the language support (U.S. English, for example) that you’ve selected or installed.
- MatchDiacritics
- Object
Optional Object. True if find operations match text with matching diacritics in a right-to-left language document. This argument may not be available to you, depending on the language support (U.S. English, for example) that you’ve selected or installed.
- MatchAlefHamza
- Object
Optional Object. True if find operations match text with matching alef hamzas in an Arabic language document. This argument may not be available to you, depending on the language support (U.S. English, for example) that you’ve selected or installed.
- MatchControl
- Object
Optional Object. True if find operations match text with matching bidirectional control characters in a right-to-left language document. This argument may not be available to you, depending on the language support (U.S. English, for example) that you’ve selected or installed.
Returns
Remarks
This method returns True if the find operation is successful.
If MatchWildcards
is True, you can specify wildcard characters and other advanced search criteria for the FindText
argument. For example, "*(ing)" finds any word that ends in "ing."
To search for a symbol character, type a caret (^), a zero (0), and then the symbol's character code. For example, "^0151" corresponds to an em dash (— ).
Unless otherwise specified, replacement text inherits the formatting of the text it replaces in the document. For example, if you replace the string "abc" with "xyz," occurrences of "abc" with bold formatting are replaced with the string "xyz" with bold formatting.
Also, if MatchCase
is False, occurrences of the search text that are uppercase will be replaced with an uppercase version of the replacement text regardless of the case of the search and replacement text. Using the previous example, occurrences of "ABC" are replaced with "XYZ."