Frameset.Width Property

Word Developer Reference

Returns or sets the width of the specified Frameset object. Read/write Long.

Syntax

expression.Width

expression   A variable that represents a Frameset object.

Remarks

Use the WidthType property to specify the type of unit in which this value is expressed.

Example

This example sets the width of the specified Frameset object to 25% of the window width.

Visual Basic for Applications
  With ActiveWindow.ActivePane.Frameset
    .WidthType = wdFramesetSizeTypePercent
    .Width = 25
End With

See Also