Share via


RevisionsBalloonSide Property

WdRevisionsBalloonMargin

WdRevisionsBalloonMargin can be one of these WdRevisionsBalloonMargin constants.
wdLeftMargin
wdRightMargin

expression.RevisionsBalloonSide

expression Required. An expression that returns a View object.

Example

This example toggles the revision balloons between the left and right side. This example assumes that the document in the active window contains revisions made by one or more reviewers and that revisions are displayed in balloons.

Sub ToggleRevisionBalloons()
    With ActiveWindow.View
        If .RevisionsBalloonSide = wdLeftMargin Then
            .RevisionsBalloonSide = wdRightMargin
        Else
            .RevisionsBalloonSide = wdLeftMargin
        End If
    End With
End Sub

Applies to | View Object