EnvelopePrintPlacement Property

       

Returns or sets a PbPlacementType constant that represents the placement of envelopes in the printer tray. Read/write.

PbPlacementType can be one of these PbPlacementType constants.
pbPlacementCenter
pbPlacementLeft
pbPlacementRight

expression.EnvelopePrintPlacement

expression   Required. An expression that returns one of the objects in the Applies To list.

Example

This example sets envelope printing options, including specifying how envelopes are placed in the printer tray.

Sub SetEnvelopeOptions()
    With Options
        .UseEnvelopePrintOptions = True
        .UseEnvelopePaperSizes = True
        .EnvelopePrintOrientation = pbOrientationLandscape
        .EnvelopePrintPlacement = pbPlacementLeft
    End With
End Sub