Vcl.StdActns.TSearchFind.Dialog

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Dialog: TFindDialog read GetFindDialog;

C++

__property Vcl::Dialogs::TFindDialog* Dialog = {read=GetFindDialog};

Properties

Type Visibility Source Unit Parent
property published
Vcl.StdActns.pas
Vcl.StdActns.hpp
Vcl.StdActns TSearchFind

Description

Provides access the find dialog that the action executes.

Use Dialog to configure the find dialog before the action fires or to close the modeless dialog programmatically. For example, you can set the find dialog's options at design time using the Object Inspector or call the dialog's CloseDialog method to close it.

When using a search-find action, you do not place a TFindDialog component on the form or data module at design time. Instead, you add the TSearchFind action to your action list and then use the Dialog property. The find dialog component is created by the TSearchFind constructor.

See Also