API:Vcl.StdActns.TSearchFindFirst

From RAD Studio API Documentation
Jump to: navigation, search

Vcl.StdActns.TSearchFindVcl.StdActns.TSearchActionVcl.StdActns.TCommonDialogActionVcl.ActnList.TCustomActionSystem.Actions.TContainedActionSystem.Classes.TBasicActionTSearchFindFirst

Delphi

TSearchFindFirst = class(TSearchFind)

C++

class PASCALIMPLEMENTATION TSearchFindFirst : public TSearchFind

Properties

Type Visibility Source Unit Parent
class public
Vcl.StdActns.pas
Vcl.StdActns.hpp
Vcl.StdActns Vcl.StdActns

Description

TSearchFind is the standard action for displaying a find dialog.

Vcl.StdActns.TSearchFindFirst inherits from Vcl.StdActns.TSearchFind. All content below this line refers to Vcl.StdActns.TSearchFind.

TSearchFind is the standard action for displaying a find dialog.

Add TSearchFind to an action list to add a modeless find dialog to your application. Controls such as menu items and tool buttons linked to this action cause the application to display the find dialog or bring it to the fore.

TSearchFind is designed to work with an edit control (TCustomEdit descendant) as a target. It automatically disables itself if the active control in a form is not an edit control.

Search actions represent a modeless dialog. As a result, the OnAccept event occurs not when the user exits the dialog, but when the dialog first appears or comes into focus. When the user directs the dialog to search for a string, TSearchFind automatically performs that search, selecting the specified text in the target edit control.

See Also