CefFileDialogMode Enumeration |
Supported file dialog modes.
Namespace: Internal.Xilium.CefGlueAssembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax[FlagsAttribute]
public enum CefFileDialogMode
Members| Member name | Value | Description |
|---|
| Open | 0 |
Requires that the file exists before allowing the user to pick it.
|
| OpenMultiple | 1 |
Like Open, but allows picking multiple files to open.
|
| OpenFolder | 2 |
Like Open, but selects a folder to open.
|
| Save | 3 |
Allows picking a nonexistent file, and prompts to overwrite if the file
already exists.
|
| TypeMask | 255 |
General mask defining the bits used for the type values.
|
| OverwritePromptFlag | 16,777,216 |
Prompt to overwrite if the user selects an existing file with the Save
dialog.
|
| HideReadOnlyFlag | 33,554,432 |
Do not display read-only files.
|
See Also