An instance of the Table
public sealed class TableCollection: TableBaseCollection
The following example shows how to handle the table collection.
int myTableId = 10;
textControl1.Tables.GridLines = false;
if(textControl1.Tables.CanAdd)
textControl1.Tables.Add(5, 3, myTableId);
TXTextControl.Table myTable = textControl1.Tables.GetItem(myTableId);
textControl1.Tables.Remove(myTableId);
Method | Description |
---|---|
Add | Adds a new table at the current text input position. |
Get |
Gets the table at the current input position. |
Remove | Removes the table at the current text input position. |
Property | Description |
---|---|
Can |
Gets a value indicating whether a new table can be inserted at the current input position. |
Grid |
Gets or sets a value indicating wether table grid lines are shown or not. |
Supported |
Gets a list of all formula functions currently supported. |
Supported |
Gets a list of often used number formats for formula results. |