Show AllShow All

RevisionsBalloonPrintOrientation Property

Returns or sets a WdRevisionsBalloonPrintOrientation constant that represents the direction of revision and comment balloons when they are printed. Read/write.

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
		
©2003 Microsoft Corporation. All rights reserved.