Row.SpaceBetweenColumns property (Word)

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 'Row' object.

Example

This example creates a 3x3 table in a new document and then sets the distance between columns in the first row to 0.5 inches.

Set newDoc = Documents.Add 
Set myTable = newDoc.Tables.Add(Selection.Range, 3, 3) 
myTable.Rows(1).SpaceBetweenColumns = InchesToPoints(0.5)

See also

Row 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.