Style.Frame property (Word)

Returns a Frame object that represents the frame formatting for the specified style. Read-only.

Syntax

expression. Frame

expression A variable that represents a 'Style' object.

Example

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

Dim styleNew As Style 
 
Set styleNew = ActiveDocument.Styles _ 
 .Add(Name:="frame", Type:=wdStyleTypeParagraph) 
With styleNew.Frame 
 .RelativeHorizontalPosition = _ 
 wdRelativeHorizontalPositionMargin 
 .HeightRule = wdFrameAuto 
 .WidthRule = wdFrameAuto 
 .TextWrap = True 
End With 
Selection.Paragraphs(1).Range.Style = "frame"

See also

Style Object

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.