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

Concepts

Frameset Object

Frameset Object Members