Frameset.WidthType property (Word)

Returns or sets the width type for the specified Frameset object. Read/write WdFramesetSizeType.

Syntax

expression. WidthType

expression Required. A variable that represents a 'Frameset' object.

Example

This example sets the width of the first Frameset object in the active document to 25% of the window width.

With ActiveDocument.ActiveWindow.Panes(1).Frameset 
 .WidthType = wdFramesetSizeTypePercent 
 .Width = 25 
End With

See also

Frameset 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.