Share via


Frameset.HeightType Property

Word Developer Reference

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.

Visual Basic for Applications
  With ActiveDocument.ActiveWindow.Panes(1).Frameset
    .HeightType = wdFramesetSizeTypePercent
    .Height = 25
End With

See Also