IDimensionViewer.DimUpdateTimer

Fore Syntax

DimUpdateTimer: Integer;

Fore.NET Syntax

DimUpdateTimer: integer;

Description

The DimUpdateTimer property determines delay between element selection and changing selection in dimension.

Comments

Delay value is specified in milliseconds.

Fore Example

Executing the example requires that the repository contains a form containing the components:

The dictionary must be present that is a data source for UiDimension1.

Sub UserProc;
Begin
    DimensionTree1.DimUpdateTimer := 5000;
    DimensionCombo1.DimUpdateTimer := 5000;
End Sub UserProc;

After executing the example the delay between element selection in the components and change of selection in the dimension will be equal to 5 seconds.

Fore.NET Example

The requirements and result of the Fore.NET Example execution match with those in the Fore Example. Use Fore.NET analogs instead of Fore components.

Public Sub UserProc();
Begin
    DimensionTreeNet1.CtrlBox.DimUpdateTimer := 5000;
    DimensionComboNet1.CtrlBox.DimUpdateTimer := 5000;
End Sub UserProc;

See also:

IDimensionViewer