FMX.Dialogs.TCommonDialog.DoExecute

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function DoExecute: Boolean; virtual; abstract;

C++

virtual bool __fastcall DoExecute() = 0 ;

Properties

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

Description

Displays the dialog box.

For TCommonDialog, DoExecute does nothing. TCommonDialog descendants override the DoExecute method in order to properly display the required dialog box. DoExecute returns a Boolean value, usually True if the user has clicked OK, and False otherwise.

Note: DoExecute is a protected method for TCommonDialog descendants; therefore, to display the dialog box, call Execute instead.


See Also