TextColumn Object

Microsoft Word Visual Basic

TextColumn Object

         
PageSetup TextColumns (TextColumn)

Represents a single text column. The TextColumn object is a member of the TextColumns collection. The TextColumns collection includes all the columns in a document or section of a document.

Using the TextColumn Object

Use TextColumns(index), where index is the index number, to return a single TextColumn object. The index number represents the position of the column in the TextColumns collection (counting from left to right).

The following example sets the space after the first text column in the active document to 0.5 inch.

ActiveDocument.PageSetup.TextColumns(1).SpaceAfter = _
    InchesToPoints(0.5)

Use the Add method to add a column to the collection of columns. By default, there's one text column in the TextColumns collection. The following example adds a 2.5-inch-widecolumn to the active document.

ActiveDocument.PageSetup.TextColumns.Add _
    Width:=InchesToPoints(2.5), _
    Spacing:=InchesToPoints(0.5), EvenlySpaced:=False

Remarks

Use the SetCount method to arrange text into columns. The following example arranges the text in the active document into three columns.

ActiveDocument.PageSetup.TextColumns.SetCount NumColumns:=3