IRunFileDialogCallbackOnFileDialogDismissed Method |
Version 101.0.180
Called asynchronously after the file dialog is dismissed.
Namespace:
CefSharp.Callback
Assembly:
CefSharp (in CefSharp.dll) Version: 101.0.180.0 (101.0.180.0)
Syntax void OnFileDialogDismissed(
int selectedAcceptFilter,
IList<string> filePaths
)
void OnFileDialogDismissed(
int selectedAcceptFilter,
IList<String^>^ filePaths
)
Parameters
- selectedAcceptFilter
- Type: SystemInt32
is the 0-based index of the value selected from the accept filters array passed to IBrowserHost.RunFileDialog - filePaths
- Type: System.Collections.GenericIListString
will be a single value or a list of values depending on the dialog mode. If the selection was cancelled filePaths will be empty
See Also