RevisionsBalloonShowConnectingLines Property

Microsoft Word Visual Basic

expression.RevisionsBalloonShowConnectingLines

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

Example

This example hides the lines connecting the document text with the corresponding revision or comment balloons.

Sub ShowConnectingLines()
    ActiveWindow.View _
        .RevisionsBalloonShowConnectingLines = False
End Sub