RevisionsBalloonPrintOrientation Property

Microsoft Word Visual Basic

constant that represents the direction of revision and comment balloons when they are printed. Read/write.

WdRevisionsBalloonPrintOrientation can be one of these WdRevisionsBalloonPrintOrientation constants.
wdBalloonPrintOrientationAuto Microsoft Word automatically selects the orientation that keeps the zoom factor closest to 100%.
wdBalloonPrintOrientationForceLandscape Word forces all sections to be printed in Landscape mode, regardless of original orientation, and prints the revision and comment balloons on the side opposite to the document text.
wdBalloonPrintOrientationPerserve Word preserves the orientation of the original, uncommented document.

expression.RevisionsBalloonPrintOrientation

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

Example

This example prints documents with comments in Landscape format with the revision and comment balloons on one side of the page and the document text on the other.

Sub PrintLandscapeCommentBalloons()
    Options.RevisionsBalloonPrintOrientation = _
        wdBalloonPrintOrientationForceLandscape
End Sub