IMatrixDataSourceExecutorSetup

Assembly: Matrix;

Description

The IMatrixDataSourceExecutorSetup interface contains properties that are used to determine calculation parameters of output matrix of multidimensional data source.

Inheritance Hierarchy

IMatrixDataSourceExecutorSetup

Comments

To determine calculation parameters, cast an object of the IMatrixDataSourceExecutor type to this type:

Var
    //...
    MatrDS: IMatrixDataSource;
    Executor: IMatrixDataSourceExecutor;
    ExecutorSetup: IMatrixDataSourceExecutorSetup;
    //...
Begin
    //...
    MatrDS := //Get multidimensional data source
    Executor := MatrDS.CreateExecutor;
    ExecutorSetup := Executor As IMatrixDataSourceExecutorSetup;
    //...

Properties

  Property name Brief description
DimensionsIntegrityCheck The DimensionsIntegrityCheck property determines whether dictionaries included into selection are checked for their building before calculation.

See also:

Matrix Assembly Interfaces