Share via


Selection.SelectColumn Method (Word)

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.

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

See Also

Concepts

Selection Object

Selection Object Members