Share via


TextFrame2.Column Property

PowerPoint Developer Reference

Returns the Column object that represents the columns of the specified text frame. Read-only.

Syntax

expression.Column

expression   An expression that returns a TextFrame2 object.

Example
The following example shows how to set the number of columns in the text frame of the first shape on slide one to 2.

Visual Basic for Applications
  Public Sub Column_Example()
    ActivePresentation.Slides(1).Shapes(1).TextFrame2.Column.Number = 2
End Sub

See Also