IRdsDictionaryBox.FindResultsMenu

Syntax

FindResultsMenu: Boolean;

Description

The FindResultsMenu property determines whether the search dialog box displays the context menu for the found elements.

Comments

Available values:

To open the dialog box to find elements in the component RdsDictionaryBox press CTRL+F.

Example

Executing the example requires a form that contains:

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:

IRdsDictionaryBox