Frameset.HeightType property (Word)

Returns or sets the width type for the specified frame on a frames page. Read/write WdFramesetSizeType.

Syntax

expression. HeightType

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

Example

This example sets the height of the first Frameset object in the specified frames page to 25 percent of the window height.

With ActiveDocument.ActiveWindow.Panes(1).Frameset 
 .HeightType = wdFramesetSizeTypePercent 
 .Height = 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.