Options.MapPaperSize Property

Word Developer Reference

True if documents formatted for another country's/region's standard paper size (for example, A4) are automatically adjusted so that they're printed correctly on your country's/region's standard paper size (for example, Letter). Read/write Boolean.

Syntax

expression.MapPaperSize

expression   An expression that returns an Options object.

Remarks

This property affects only the printout of your document; its formatting is left unchanged.

Example

This example allows Microsoft Word to adjust paper size according to the country/region setting.

Visual Basic for Applications
  Options.MapPaperSize = True

This example returns the status of the Allow A4/Letter paper resizing option on the Print tab in the Options dialog box (Tools menu).

Visual Basic for Applications
  temp = Options.MapPaperSize

See Also