Frame Property

Applies To

Find object, Replacement object, Style object.

Description

Returns a Frame object that represents the frame formatting for the specified style or find-and-replace operation. Read-only.

See Also

Execute method (Find object), Find property, Replacement property, Styles property.

Example

This example creates a style with frame formatting and then applies the style to the first paragraph in the selection.

Set myStyle = ActiveDocument.Styles.Add(Name:="frame", Type:=wdParagraph)
With myStyle.Frame
    .RelativeHorizontalPosition = wdRelativeHorizontalPositionMargin
    .HeightRule = wdFrameAuto
    .WidthRule = wdFrameAuto
    .TextWrap = True
End With
Selection.Paragraphs(1).Range.Style = "frame"
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