IsDeleted: Boolean;
The IsDeleted property determines whether time series is removed.
Available values:
True. Time series is deleted.
False. Time series is no deleted.
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(Null) As 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: