Options.RevisionsBalloonPrintOrientation Property (Word)
Returns or sets a WdRevisionsBalloonPrintOrientation constant that represents the direction of revision and comment balloons when they are printed. Read/write.
Syntax
expression .RevisionsBalloonPrintOrientation
expression Required. A variable that represents an Options collection.
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