OtherPagesTray Property

Microsoft Word Visual Basic

Show All

OtherPagesTray Property

       

Returns or sets the paper tray to be used for all but the first page of a document or section. Read/write WdPaperTray.

WdPaperTray can be one of these WdPaperTray constants.
wdPrinterAutomaticSheetFeed
wdPrinterDefaultBin
wdPrinterEnvelopeFeed
wdPrinterFormSource
wdPrinterLargeCapacityBin
wdPrinterLargeFormatBin
wdPrinterLowerBin
wdPrinterManualEnvelopeFeed
wdPrinterManualFeed
wdPrinterMiddleBin
wdPrinterOnlyBin
wdPrinterPaperCassette
wdPrinterSmallFormatBin
wdPrinterTractorFeed
wdPrinterUpperBin

expression.OtherPagesTray

expression   Required. An expression that returns a PageSetup object.

Example

This example sets the tray to be used for printing all but the first page of each section in the active document.

ActiveDocument.PageSetup.OtherPagesTray = wdPrinterUpperBin

This example sets the tray to be used for printing all but the first page of each section in the selection.

Selection.PageSetup.OtherPagesTray = wdPrinterLowerBin