IRubricatorSegmentsSet.Clear

Syntax

Clear;

Description

The Clear method clears data segments collection.

Example

Executing the example requires that the repository contains a time series database with the OBJ_RUBRICATOR identifier.

Sub UserProc;
Var
    Mb: IMetabase;
    RubInst: IRubricatorInstance;
    Segs: IRubricatorSegments;
Begin
    Mb := MetabaseClass.Active;
    RubInst := Mb.ItemById("OBJ_RUBRICATOR").Open(NullAs IRubricatorInstance;
    Segs := rubInst.Segments;
    If Segs.Count > 0 Then
        Segs.Clear;
    End If;
End Sub UserProc;

After executing the example the collection of database segments is cleared if it contained any elements.

See also:

IRubricatorSegmentsSet