IValidationExecData.Delete

Syntax

Delete;

Description

The Delete method deletes data about validation calculation.

Example

Executing the example requires that the repository contains a time series database with the OBJ_RUBRICATOR identifier that includes validation calculation with the the 1 key.

Sub Main;

Var

MB: IMetabase;

RubInst: IRubricatorInstance;

ValiData: IValidationExecData;

Begin

MB := MetabaseClass.Active;

RubInst := MB.ItemById("OBJ_RUBRICATOR").Open(Null) As IRubricatorInstance;

ValiData := RubInst.GetValidationExecData(1, DictionaryGetDataOptions.None);

ValiData.Delete;

End Sub Main;

 

After executing the example data on the validation calculation with the 1 key is deleted.

See also:

IValidationExecData