DimUpdateTimer: Integer;
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 with the DimensionTree1 name.
DimensionCombo with the DimensionCombo1 name.
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.
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: