
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.
[C#]
public class TableColumn
[Visual Basic]
Public Class TableColumn
| 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. |
| Method | Description | |
| Select | Selects the table column. |
The following example shows how to handle table columns.
[C#]
TXTextControl.TableColumn myCol = myTable.Columns.GetItem(1);
int myDelta = (int)(myCol.Width / 5);
myCol.Width -= myDelta;
myCol.Position += myDelta;
[Visual Basic]
Dim MyCol As TXTextControl.TableColumn = MyTable.Columns.GetItem(1)
Dim MyDelta As Integer = CInt(MyCol.Width / 5)
MyCol.Width -= MyDelta
MyCol.Position += MyDelta