type ICefFileDialogCallback = interface(ICefBaseRefCounted)
Callback interface for asynchronous continuation of file dialog requests.
UNKNOWN
<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_dialog_handler_capi.h">CEF source file: /include/capi/cef_dialog_handler_capi.h (cef_file_dialog_callback_t))
| Public | procedure Cont(const filePaths: TStrings); |
| Public | procedure Cancel; |
| Public | procedure Cont(const filePaths: TStrings); |
|
Continue the file selection. |file_paths| should be a single value or a list of values depending on the dialog mode. An NULL |file_paths| value is treated the same as calling cancel(). Attributes
| |
| Public | procedure Cancel; |
|
Cancel the file selection. | |