View.RevisionsBalloonWidthType property (Word)

Sets or returns a WdRevisionsBalloonWidthType constant representing the global setting that specifies how Microsoft Word measures the width of revision balloons. Read/write.

Syntax

expression. RevisionsBalloonWidthType

expression Required. A variable that represents a 'View' object.

Remarks

The RevisionsBalloonWidthType property sets the measurement unit to use when setting the RevisionsBalloonWidth property.

Example

This example sets the width of the revision balloons to twenty-five percent of the document's width. 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 BalloonWidthType() 
 With ActiveWindow.View 
 .RevisionsBalloonWidthType = wdBalloonWidthPercent 
 .RevisionsBalloonWidth = 25 
 End With 
End Sub

See also

View Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.