Share via


Frameset.WidthType Property

Word Developer Reference

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.

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

See Also