Skip to content

Latest commit

 

History

History
60 lines (35 loc) · 1.07 KB

Word.Document.FitToPages.md

File metadata and controls

60 lines (35 loc) · 1.07 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Document.FitToPages method (Word)
vbawd10.chm158007400
vbawd10.chm158007400
Word.Document.FitToPages
8935d286-61b7-432e-ed79-b85708dd1a01
06/08/2017
medium

Document.FitToPages method (Word)

Decreases the font size of text just enough so that the document will fit on one fewer pages.

Syntax

expression. FitToPages

expression Required. A variable that represents a Document object.

Remarks

An error occurs if Word is unable to reduce the page count by one.

Example

This example attempts to reduce the page count of the active document by one page.

On Error GoTo errhandler 
ActiveDocument.FitToPages 
errhandler: 
If Err = 5538 Then MsgBox "Fit to pages failed"

This example attempts to reduce the page count of each open document by one page.

For Each doc In Documents 
 doc.FitToPages 
Next doc

See also

Document Object

[!includeSupport and feedback]