FMX.Dialogs.TCommonDialog.Execute

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Execute: Boolean; overload; virtual;

C++

virtual bool __fastcall Execute()/* overload */;

Properties

Type Visibility Source Unit Parent
function public
FMX.Dialogs.pas
FMX.Dialogs.hpp
FMX.Dialogs TCommonDialog

Description

Displays the dialog box.

Call Execute in TCommonDialog descendants in order to display the dialog box. Additionally, Execute calls DoShow before the dialog is displayed, and DoClose, after the dialog is closed. Execute returns a Boolean value, usually True if the user has clicked OK, and False otherwise.

See Also