IRdsDictionaryBox.FindResultsMenu

Fore Syntax

FindResultsMenu: Boolean;

Fore.NET 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.

Fore 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.

Fore.NET Example

Executing the example requires a form that contains:

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:

IRdsDictionaryBox