TextFrame2.Column Property (PowerPoint)
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.
Public Sub Column_Example()
ActivePresentation.Slides(1).Shapes(1).TextFrame2.Column.Number = 2
End Sub