设置或返回一个 WdRevisionsBalloonWidthType 常量,该常量代表指定 Microsoft Word 如何测量修订气球的宽度的全局设置。可读写。
| WdRevisionsBalloonWidthType 可以是下列 WdRevisionsBalloonWidthType 常量之一: | 
| wdBalloonWidthPercent 以文档宽度的百分比测量。 | 
| wdBalloonWidthPoints 以磅为单位测量。 | 
expression.RevisionsBalloonWidthType
expression 必需。该表达式返回一个 View 对象。
RevisionsBalloonWidthType 属性设置用于设置 RevisionsBalloonWidth 属性的度量单位。
本示例将修订气球的宽度设为文档宽度的 25%。本示例假定活动窗口中的文档包含多个审阅者所作的修订,并且修订显示于气球中。
Sub BalloonWidthType()
    With ActiveWindow.View
        .RevisionsBalloonWidthType = wdBalloonWidthPercent
        .RevisionsBalloonWidth = 25
    End With
End Sub