DimUpdateTimer: Integer;
The DimUpdateTimer property determines delay between element selection and changing selection in dimension.
Delay value is specified in milliseconds.
Executing the example requires that the repository contains a form containing the components:
DimensionTree named DimensionTree1.
DimensionCombo named DimensionCombo1.
UiDimension with the UiDimension1 identifier that is a data source for DimensionTree1 and DimensionCombo1.
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: