Table of Contents
WebView.FileDialog Event

Occurs when the browser engine needs to display a "Browse File" or "Save File" dialog.

Syntax
 public event FileDialogHandler FileDialog;
Event Data

The event handler receives an argument of type FileDialogEventArgs containing data related to this event. The following FileDialogEventArgs properties provide information specific to this event.

Name Description
AcceptTypes Gets the accepted file types.
DefaultFileName Gets the default file name.
Filter Gets the filter string that specifies the file types and descriptions to display in the dialog.
Handled Gets or set a flag to indicate whether this event has been handled.
Mode Gets the file dialog mode.
Title Gets the file dialog title.
Remarks

See here for more information about how to use this event.

See Also