Laner: ILaner;
The Laner property returns the workbook of time series database in the series mode.
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.
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(0) As 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: