QueryTableCollection
Contents
[
Hide
]QueryTableCollection class
A collection of QueryTableCollection objects that represent QueryTable collection information.
class QueryTableCollection implements Iterable<QueryTable>;
Methods
| Method | Description |
|---|---|
| get(number) | Gets the querytable by the specific index. |
| getCount() | @deprecated. Please use the ‘count’ property instead. Gets the number of elements contained in. |
| isNull() | Checks whether the implementation object is null. |
[Symbol.iterator](): Iterator<QueryTable>
Returns an iterator over the items in the collection. Enables use of for...of, spread syntax, and Array.from().
get(number)
Gets the querytable by the specific index.
get(index: number) : QueryTable;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| index | number | The index. |
Returns
The querytable
getCount()
@deprecated. Please use the ‘count’ property instead. Gets the number of elements contained in.
getCount() : number;
isNull()
Checks whether the implementation object is null.
isNull() : boolean;