Column Interface

Represents a table column. The Column object is a member of the Columns collection. The Columns collection includes all the columns in a table.

Namespace:  Microsoft.Office.Interop.PowerPoint
Assembly:  Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)

Syntax

'Declaration
<GuidAttribute("914934C5-5A91-11CF-8700-00AA0060263B")> _
Public Interface Column
'Usage
Dim instance As Column
[GuidAttribute("914934C5-5A91-11CF-8700-00AA0060263B")]
public interface Column

Examples

Use Columns(index) to return a single Column object. Index represents the position of the column in the Columns collection (usually counting from left to right; although the TableDirection property can reverse this). This example selects the first column of the table in shape five on the second slide.

Use the Cell object to indirectly reference the Column object. This example deletes the text in the first cell (row 1, column 1), inserts new text, and then sets the width of the entire column to 110 points.

Use the Add(Int32) method to add a column to a table. This example creates a column in an existing table and sets the column width to 72 points (one inch).

Use the Cells property to modify the individual cells in a Column object. This example selects the first column in the table and applies a dashed line style to the bottom border.

See Also

Reference

Column Members

Microsoft.Office.Interop.PowerPoint Namespace