IChronologicalMatrixAggregator.OperationCount

Syntax

OperationCount: Integer;

Description

The OperationCount property returns the number of available aggregation methods.

Example

Sub Main;

Var

Man: IMatrixAggregatorManager;

ChronAggr: IChronologicalMatrixAggregator;

i: Integer;

Begin

Man := New MatrixAggregatorManager.Create As IMatrixAggregatorManager;

ChronAggr := Man.CreateAggregator("ChronologicalMatrixAggregator") As IChronologicalMatrixAggregator;

For i := 0 To ChronAggr.OperationCount - 1 Do

Debug.WriteLine(ChronAggr.OperationName(ChronAggr.Operation(i)));

End For;

End Sub Main;

After executing the example names of all methods that are available on using chronological aggregation mechanism are displayed in the development environment console.

See also:

IChronologicalMatrixAggregator