EditorFileDialog.Mode/mode - multiple declarations
Function EditorFileDialog.mode
The purpose of the EditorFileDialog
, which defines the allowed behaviors.
Enum EditorFileDialog.Mode
enum Mode
: int { ... }
Enum members
Name | Description |
---|---|
modeOpenAny
|
The EditorFileDialog can select a file or directory. Accepting the window will open it.
|
modeOpenDir
|
The EditorFileDialog can select only one directory. Accepting the window will open the directory.
|
modeOpenFile
|
The EditorFileDialog can select only one file. Accepting the window will open the file.
|
modeOpenFiles
|
The EditorFileDialog can select multiple files. Accepting the window will open all files.
|
modeSaveFile
|
The EditorFileDialog can select only one file. Accepting the window will save the file.
|