IRubricatorFactData.IsDeleted

Syntax

IsDeleted: Boolean;

Description

The IsDeleted property determines whether time series is removed.

Comments

Available values:

Example

Executing the example requires a time series database with the OBJ_RUBRICATOR identifier. This database contains an indicator with the 94173 key.

Sub UserProc;
Var
    MB: IMetabase;
    RubrIn: IRubricatorInstance;
    FactD: IRubricatorFactData;
    RubRev: IRubricatorRevision;
Begin
    MB := MetabaseClass.Active;
    RubrIn := MB.ItemById("OBJ_RUBRICATOR").Open(NullAs IRubricatorInstance;
    RubRev := RubrIn.OpenRevision("Test_Revision");
    FactD := RubrIn.GetFactData(94173, DictionaryGetDataOptions.Edit);
    FactD.IsDeleted := True;
    FactD.Save;
End Sub UserProc;

After executing the example the indicator with the 94173 key is deleted.

See also:

IRubricatorFactData