EvenlySpaced Property
Applies To
TextColumns collection object.
Description
True if text columns are evenly spaced. Can be True, False, or wdUndefined. Read/write Long.
Remarks
If you set the Spacing or Width property of the TextColumns object, the EvenlySpaced property is automatically set to True. Also, setting the EvenlySpaced property may change the settings for the Spacing and Width properties of the TextColumns object.
See Also
Add method (TextColumns collection), Spacing property, Width property.
Example
This example topic sets columns in the active document to be evenly spaced.
Set myCols = ActiveDocument.PageSetup.TextColumns
If myCols.Count > 1 Then myCols.EvenlySpaced = True
This example returns the status of the Equal column width option in the Columns dialog box (Format menu).
temp = ActiveDocument.PageSetup.TextColumns.EvenlySpaced