StatisticRecordIterator QML Type
An iterator for a collection of StatisticRecords. More...
Import Statement: | import Esri.ArcGISRuntime |
Since: | Esri.ArcGISRuntime 100.2 |
Inherits: |
- List of all members, including inherited members
- StatisticRecordIterator is part of QML Type List.
Properties
- hasNext : bool
- statisticRecords : list<StatisticRecord>
Methods
Detailed Description
Note: You cannot declare or create a component of this type in QML code.
See also StatisticRecord and StatisticsQueryResult.
Property Documentation
[read-only] hasNext : bool |
Returns whether there is another StatisticRecord available from this iterator (read-only).
[read-only] statisticRecords : list<StatisticRecord> |
Returns all statistic records in the iterator at once as a list of StatisticRecord objects (read-only).
All statistic records in this iterator are returned in the list, regardless of whether any statistic records were already accessed through this iterator. After this call, this StatisticRecordIterator will point past the last StatisticRecord in the iterator. To start over reading statistic records from the beginning of this iterator, call reset.
Method Documentation
StatisticRecord next() |
Returns the next StatisticRecord.
void reset() |
Points the iterator back to the front.