Frameset.Width property (Word)

Returns or sets the width (in points) of the specified Frameset object. Read/write Long.

Syntax

expression.Width

expression A variable that represents a 'Frameset' object.

Remarks

Use the WidthType property to specify the type of unit in which this value is expressed.

Example

This example sets the width of the specified Frameset object to 25% of the window width.

With ActiveWindow.ActivePane.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.