FindResultsMenu: Boolean;
The FindResultsMenu property determines whether the search dialog box displays the context menu for the found elements.
Available values:
True. Default value. Context menu is shown.
False. Context menu is not shown.
To open the dialog box to find elements in the component RdsDictionaryBox press CTRL+F.
Executing the example requires a form that contains:
A button with the Button1 identifier.
The RdsDictionaryBox component with the RdsDictionaryBox1 identifier.
The UiRdsDictionary component used as a data source for RdsDictionaryBox1. An MDM dictionary is loaded to UiRdsDictionary.
This procedure is a handler of the OnClick event for the Button1 button.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
RdsDictionaryBox1.FindResultsMenu := False;
End Sub Button1OnClick;
After executing the example the search dialog box does not show context menu for the found elements.
See also: