IDimensionViewer.DimUpdateTimer

Syntax

DimUpdateTimer: Integer;

Description

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

Comments

Delay value is specified in milliseconds.

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.

See also:

IDimensionViewer