Rows.SpaceBetweenColumns Property

Word Developer Reference

Returns or sets the distance (in points) between text in adjacent columns of the specified row or rows. Read/write Single.

Syntax

expression.SpaceBetweenColumns

expression   Required. A variable that represents a Rows collection.

Example

This example returns the distance (in points) between columns in the selected table rows.

Visual Basic for Applications
  If Selection.Information(wdWithInTable) = True Then
    MsgBox Selection.Rows.SpaceBetweenColumns
End If

See Also