ILaner.PermanentData

Syntax

PermanentData: Boolean;

Description

The PermanentData property determines the method of loading and saving of time series data.

Comments

Available values:

Example

Executing the example requires a form containing the LanerBox component with the LanerBox1 identifier and the UiErAnalayzer component with the UiErAnalayzer1 identifier that is a data source for LanerBox1. Workbook of the time series database must be loaded to UiErAnalyzer1.

Sub UserProc;
Var
    ErAn: IEaxAnalyzer;
    Laner: ILaner;
Begin
    ErAn := UiErAnalyzer1.ErAnalyzer;
    Laner := ErAn.Laner;
    If Laner.PermanentData Then
        Laner.PermanentData := False;
    End If;
End Sub UserProc;

After executing this example the workbook loads or saves series data directly from the database.

See also:

ILaner