MoveElementDown;
The MoveElementDown method moves the selected elements one position down if it is allowed.
Executing the example requires a form with the Button1 button, the RdsDictionaryBox component named RdsDictionaryBox1, and the UiRdsDictionary component that is a data source for RdsDictionaryBox1.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
If RdsDictionaryBox1.CanElementDown Then
RdsDictionaryBox1.MoveElementDown;
End If;
End Sub Button1OnClick;
Clicking the button moves the selected dictionary elements one position down if it is possible.
See also: