Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Sets or retrieves a Boolean representing the direction of the text search. True if the find operation searches forward through the document. False if it searches backward through the document. Read/write.
Syntax
expression.Forward
expression A variable that represents a FindReplace object.
Return value
Boolean
Remarks
Forward must be set to True when replacing text.
Example
This example replaces all occurrences of the word This in the selection with the word That in each open publication.
Dim objDocument As Document
For Each objDocument In Documents
With objDocument.Find
.Clear
.MatchCase = True
.FindText = "This"
.ReplaceWithText = "That"
.ReplaceScope = pbReplaceScopeAll
.Forward = True
.Execute
End With
Next objDocument
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.