Selection.SelectColumn Method

Word Developer Reference

Selects the column that contains the insertion point, or selects all columns that contain the selection.

Syntax

expression.SelectColumn

expression   Required. A variable that represents a Selection object.

Remarks

If the selection isn't in a table, an error occurs.

Example

This example collapses the selection to the ending point and then selects the column that contains the insertion point.

Visual Basic for Applications
  Selection.Collapse Direction:=wdCollapseEnd
If Selection.Information(wdWithInTable) = True Then
    Selection.SelectColumn
End If

See Also