SubDocument.tablesInfo Property
Returns information about tables in the sub-document.
Declaration
get tablesInfo(): Table[]
Property Value
Type | Description |
---|---|
Table[] | An array of objects that contain information about tables. |
Remarks
var tables = richEdit.document.activeSubDocument.tablesInfo;
You can use the findTables(arg) method to get an array of tables that match the search conditions.
Refer to the following section for more information: Access a Structural Element.
See Also