EditorFileDialog.Mode/mode - multiple declarations

Function EditorFileDialog.mode

The purpose of the EditorFileDialog, which defines the allowed behaviors.

EditorFileDialog.Mode mode() nothrow @property @nogc;

void mode (
  long v
) nothrow @property @nogc;

Enum EditorFileDialog.Mode

enum Mode : int { ... }

Enum members

NameDescription
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.