Share via


Column.Previous Property

Word Developer Reference

Returns the previous column in a collection of table columns. Read-only.

Syntax

expression.Previous

expression   A variable that represents a Column object.

Example

If the selection is in a table, this example selects the contents of the previous table column.

Visual Basic for Applications
  If Selection.Information(wdWithInTable) = True Then
    Selection.Columns(1).Previous.Select
End If

See Also