// Copyright © 2014 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
namespace CefSharp
{
///
/// CefFileDialogMode (Based on cef_file_dialog_mode_t)
///
public enum CefFileDialogMode
{
///
/// Requires that the file exists before allowing the user to pick it.
///
Open,
///
/// Like Open, but allows picking multiple files to open.
///
OpenMultiple,
///
/// Like Open, but selects a folder to open.
///
OpenFolder,
///
/// Allows picking a nonexistent file, and prompts to overwrite if the file already exists.
///
Save
}
}