ILanerSeries.RemoveSeries

Syntax

RemoveSeries(Value: ILanerSeriesSet);

Parameters

Value. Series to remove.

Description

The RemoveSeries method removes the specified series from the workbook

Comments

To remove a separate series, use the ILanerSeries.Remove, ILanerSeries.RemoveByKey and ILanerSeries.RemoveGroupedByKey methods.

Example

Executing the example requires that the repository contains a workbook with the WORKBOOK_SERIES identifier that contains more than two series.

Add links to the Express, Laner and Metabase system assemblies.

Sub UserProc;
Var
    mb: IMetabase;
    WbkObj: IMetabaseObject;
    EaxAn: IEaxAnalyzer;
    Laner: ILaner;
    Series: ILanerSeries;
    SeriesSet: ILanerSeriesSet;
Begin
    // Get workbook
    mb := MetabaseClass.Active;
    WbkObj := mb.ItemById("WORKBOOK_SERIES").Edit;
    EaxAn := WbkObj As IEaxAnalyzer;
    Laner := EaxAn.Laner;
    // Get workbook series
    Series := Laner.Series;
    // Create a series set
    SeriesSet := Series.CreateSet;
    // Add the first two series to the set
    SeriesSet.Add(Series.Item(0));
    SeriesSet.Add(Series.Item(1));
    // Remove the series included in the set from the workbook
    Series.RemoveSeries(SeriesSet);
    // Save changes
    WbkObj.Save;
End Sub UserProc;

After executing the example the first two data series are removed from the workbook.

See also:

ILanerSeries