Compartilhar via


Frameset.WidthType Property (Word)

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.

With ActiveDocument.ActiveWindow.Panes(1).Frameset 
 .WidthType = wdFramesetSizeTypePercent 
 .Width = 25 
End With

See Also

Concepts

Frameset Object Members

Frameset Object