Find.Frame property (Word)
Returns a Frame object that represents the frame formatting for the specified style or find-and-replace operation. Read-only.
expression. Frame
expression A variable that represents a 'Find' object.
This example finds the first frame with wrap around formatting. If such a frame is found, a message is displayed on the status bar.
With ActiveDocument.Content.Find
.Text = ""
.Frame.TextWrap = True
.Execute Forward:=True, Wrap:=wdFindContinue, Format:=True
If .Found = True Then StatusBar = "Frame was found"
.Parent.Select
End With
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.