Limitations
Read only.
Gets a collection of all tables contained in the main text of the document. The property's value is an object of the type Table
public TableCollection Tables { get; }
Public ReadOnly Property Tables() As TableCollection
The following examples describes how to use the 'TXText
TXTextControl.MainText mainText = textControl1.TextParts.GetMainText();
//...
TXTextControl.TableCollection myMainTextTableColl = mainText.Tables;
//...
Dim mainText As TXTextControl.MainText = TextControl1.TextParts.GetMainText()
'...
Dim myMainTextTableColl As TXTextControl.TableCollection = mainText.Tables
'...
Read only.