An instance of the TableColumn class represents a single column of a table in a Text Control document. It can be obtained from the table's column collection.

Syntax

public class TableColumn
Public Class TableColumn

Examples

The following example shows how to handle table columns.

TXTextControl.TableColumn myCol = myTable.Columns.GetItem(1);
int myDelta = (int)(myCol.Width / 5);
myCol.Width -= myDelta;
myCol.Position += myDelta;
Dim MyCol As TXTextControl.TableColumn = MyTable.Columns.GetItem(1)
Dim MyDelta As Integer = CInt(MyCol.Width / 5)
MyCol.Width -= MyDelta
MyCol.Position += MyDelta

Methods

Method Description
Select Selects the table column.

Properties

Property Description
CellFormat Gets or sets the formatting attributes of a table column.
Column Gets the number of the table column represented through this table column object.
Position Gets or sets, in twips, the horizontal position of the column.
Width Gets or sets, in twips, the width of the column.