IRdsDictionaryBox.ShowFindDialog

Syntax

ShowFindDialog;

Description

The ShowFindDialog method opens the standard dialog box for searching MDM dictionary elements.

Example

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. Example is a handler of the OnClick event for a button.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
    RdsDictionaryBox1.ShowFindDialog;
End Sub Button1OnClick;

After executing the example a standard dialog box opens for MDM dictionary elements search.

See also:

IRdsDictionaryBox