IEaxDataAreaLanerSlice.Laner

Syntax

Laner: ILaner;

Description

The Laner property returns the workbook of time series database in the series mode.

Comments

The series mode for the time series database workbook is set in the IEaxAnalyzeCore.Mode property by toggling the EaxMode.MultiDimension value to EaxMode.Series.

Example

Executing the example requires that the repository contains a dictionary with the WORKBOOK identifier.

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

Sub UserProc;
Var
    MB: IMetabase;
    Express: IEaxAnalyzer;
    LanerSlice: IEaxDataAreaLanerSlice;
Begin
    MB := MetabaseClass.Active;
    Express := MB.ItemById("WORKBOOK").Bind As IEaxAnalyzer;
    LanerSlice := Express.DataArea.Slices.Item(0As IEaxDataAreaLanerSlice;
    Debug.WriteLine("Start data - " + LanerSlice.Laner.StartDate.ToString);
    Debug.WriteLine("End date - " + LanerSlice.Laner.EndDate.ToString);
End Sub UserProc;

After executing the example the console window displays start and end dates of displayed values.

See also:

IEaxDataAreaLanerSlice