An instance of the Table
public class TableColumn
Public Class TableColumn
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
Method | Description |
---|---|
Select | Selects the table column. |
Property | Description |
---|---|
Cell |
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. |