Provides access to data that may be used in Statistics Collector callbacks.
Each StatisticsCollector has a CollectedData object. This object can only be accessed in callbacks called by the Statistics Collector, through its collectedData property. Before evaluating one of these callbacks, the Statistics Collector sets some or all of the properties on this object, so they can be read within the callback.colNum | The position of the current column in the table. |
colValue | The value associated with the current column. |
colValueIndex | The index of the current column, relative to its column set. |
currentValue | The value in the table at the current row and column. |
eventName | The name of the event that fired, causing the current callback to be evaluated. |
eventNode | The treenode responsible for the event that fired, causing the current callback to be evaluated. |
group | The Group associated with the current callback. |
linkedColumns | An array of column numbers, indicating which columns are linked to the current event. |
processFlowInstance | The instance associated with the current callback. |
rowNum | The position of the current row in the table. |
rowValue | The value associated with the current row. |
rowValueIndex | The index of this row value, if the Row Value for the current event is an Array. |
readonly int colNum
The position of the current column in the table.
readonly Variant colValue
The value associated with the current column.
This value is set as part of the Set Value callback for Column Sets.readonly int colValueIndex
The index of the current column, relative to its column set.
This value determined by the sequence of values returned from the Set Value callback for Column Sets.readonly Variant currentValue
The value in the table at the current row and column.
readonly string eventName
The name of the event that fired, causing the current callback to be evaluated.
readonly treenode eventNode
The treenode responsible for the event that fired, causing the current callback to be evaluated.
readonly Group group
The Group associated with the current callback.
This value will be empty unless the Statistics Collector is listening to a Group, or an enumerated object is a Group.readonly Array linkedColumns
An array of column numbers, indicating which columns are linked to the current event.
readonly Object processFlowInstance
The instance associated with the current callback.
This value will be empty unless the Statistics Collector is listening to, or has enumerated, a Process Flow block in a instanced flow.readonly int rowNum
The position of the current row in the table.
readonly Variant rowValue
The value associated with the current row.
This value is the value specified by the Row Value. If the Row Mode is Enumerate, then the row value is the object associated with the current row.readonly int rowValueIndex
The index of this row value, if the Row Value for the current event is an Array.