DistributeWidth 方法

       

将指定列或单元格调整为等宽。

expression.DistributeWidth

expression   返回一个 CellsColumns 对象。

示例

本示例将活动文档的第一个表格调整为等宽。

ActiveDocument.Tables(1).Columns.DistributeWidth

本示例调整选定单元格的宽度。

If Selection.Cells.Count >= 2 Then 
    Selection.Cells.DistributeWidth
End If