Vcl.Dialogs.TCustomFileDialog.OnFileOkClick

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnFileOkClick: TFileDialogCloseEvent read FOnFileOkClick write FOnFileOkClick;

C++

__property TFileDialogCloseEvent OnFileOkClick = {read=FOnFileOkClick, write=FOnFileOkClick};

Properties

Type Visibility Source Unit Parent
event public
Vcl.Dialogs.pas
Vcl.Dialogs.hpp
Vcl.Dialogs TCustomFileDialog

Description

Occurs when the user clicks the OK button.

OnFileOkClick occurs when the user clicks the OK button. The event occurs just before the dialog returns with a result. If an event handler is defined, the property contains a pointer to a TFileDialogCloseEvent. The DoOnFileOkClick method triggers this event.

See Also