ITreeList.ShowFindDialog

Syntax

ShowFindDialog;

Description

The ShowFindDialog method initializes the dialog box of elements search of the TreeList component.

Example

To execute the example, place the Button component with the Button1 identifier and the TreeList component with the TreeList1 identifier on the form.

Add links to the ExtCtrls, Forms system assemblies.

The example is a handler of the OnClick event for the Button1 component.

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

After executing the example clicking the button initializes the element search dialog box for the TreeList1 component.

See also:

ITreeList