FileDialog.Mode/mode - multiple declarations

Function FileDialog.mode

The dialog's open or save mode, which affects the selection behavior. See enum Mode constants.

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

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

Enum FileDialog.Mode

enum Mode : int { ... }

Enum members

NameDescription
modeOpenAny The dialog allows selecting one file or directory.
modeOpenDir The dialog only allows selecting a directory, disallowing the selection of any file.
modeOpenFile The dialog allows selecting one, and only one file.
modeOpenFiles The dialog allows selecting multiple files.
modeSaveFile The dialog will warn when a file exists.