ILaner.ForecastStartDate

Syntax

ForecastStartDate: DateTime;

Description

The ForecastStartDate property determines the date, before which the identification data of the workbook is displayed.

Comments

The ForecastStartDate value must be within the [ILaner.StartDate; ILaner.EndDate] range.

ForecastStartDate affects only the options of the data display in the workbook. To determine the calculation options of a certain series use the ILanerTransformPeriod interface.

IMPORTANT. The property is not supported.

Example

Executing the example requires a form with the Button1 button, the LanerBox component named LanerBox1 and the UiErAnalyzer component named UiErAnalyzer1 that is a data source for the LanerBox component. Workbook of the time series database must be loaded to UiErAnalyzer1.

Click the button to start executing the example.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
    Analyzer: IEaxAnalyzer;
    Laner: Ilaner;
Begin
    Analyzer := UiErAnalyzer1.ErAnalyzer;
    Laner := Analyzer.Laner;
    Laner.StartDate := DateTime.ComposeDay(19900201);
    Laner.ForecastStartDate := DateTime.ComposeDay(20120101);
    Laner.EndDate := DateTime.ComposeDay(20150501);
End Sub Button1OnClick;

After executing the example the workbook data display period is changed:

See also:

ILaner