An instance of the Table
public sealed class TableCollection: TableBaseCollectionPublic NotInheritable Class TableCollection
Inherits TableBaseCollectionThe 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);Dim MyTableId As Integer = 10
TextControl1.Tables.GridLines = False
If TextControl1.Tables.CanAdd Then
TextControl1.Tables.Add(5, 3, MyTableId)
End If
Dim MyTable As TXTextControl.Table = 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. |