ForecastStartDate: DateTime;
The ForecastStartDate property determines the date, before which the identification data of the workbook is displayed.
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.
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(1990, 02, 01);
Laner.ForecastStartDate := DateTime.ComposeDay(2012, 01, 01);
Laner.EndDate := DateTime.ComposeDay(2015, 05, 01);
End Sub Button1OnClick;
After executing the example the workbook data display period is changed:
The period start - February 1st, 1990.
The period end - May 1st, 2015.
Identification period end - January 1st 2012.
See also: