Resize Method

Microsoft Word Visual Basic

Sizes the Word application window or the specified task window. If the window is maximized or minimized, an error occurs.

Note  Use the Width or Height property to set the window width and height independently.

expression.Resize(Width, Height)

expression    Required. An expression that returns an Application or Task object.

Width    Required Long. The width of the window, in points.

Height    Required Long. The height of the window, in points.

Example

This example resizes the Microsoft Excel application window to 6 inches wide by 4 inches high.

If Tasks.Exists("Microsoft Excel") = True Then
    With Tasks("Microsoft Excel")
        .WindowState = wdWindowStateNormal
        .Resize Width:=InchesToPoints(6), Height:=InchesToPoints(4)
    End With
End If
		

This example resizes the Word application window to 7 inches wide by 6 inches high.

With Application
    .WindowState = wdWindowStateNormal
    .Resize Width:=InchesToPoints(7), Height:=InchesToPoints(6)
End With