FindResultsMenu: Boolean;
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.
Executing the example requires a form that contains:
A button with the button1 identifier.
The RdsDictionaryBoxNet component with the rdsDictionaryBoxNet1 identifier.
The UiRdsDictionaryNet component used as a data source for rdsDictionaryBoxNet1. An MDM dictionary is loaded to UiRdsDictionaryNet.
This procedure is a handler of the Click event for the button1 button.
Private Sub button1_Click(sender: System.Object; e: System.EventArgs);
Begin
rdsDictionaryBoxNet1.CtrlBox.FindResultsMenu := False;
End Sub;
After executing the example the search dialog box does not show context menu for the found elements.
See also: