TOPICA Basic Class DataDictionaryTableCollection |
[This is preliminary documentation and is subject to change.]
The DataDictionaryTableCollection class is a collection of DataDictionaryTable objects.
Property | Type | Description |
---|---|---|
ToString | String | Returns a string representation for debugging etc. |
ToLines | String | Returns a string representation of tables in the collection, each line containing the string representation of one DataDictionaryTable object. The lines are separated by Newline. |
Count | Integer | Number of objects in the collection |
First | Returns the first DataDictionaryTable in the collection. | |
Last | Returns the last DataDictionaryTable in the collection. |
Index type | Description |
---|---|
Integer | Zero-based: DataDictionary.Tables[0] returns the first table in the Data Dictionary. DataDictionary.Tables[1] returns the second table in the Data Dictionary. |
String | Look-up by table name DataDictionary.Tables["MyTable"] returns the table having table name "MyTable" - null if no such table exists. |