Interface SaveFileDialogOptions

interface SaveFileDialogOptions {
    AllowsMultipleSelection: undefined | boolean;
    AllowsOtherFiletypes: undefined | boolean;
    ButtonText: undefined | string;
    CanChooseDirectories: undefined | boolean;
    CanChooseFiles: undefined | boolean;
    CanCreateDirectories: undefined | boolean;
    CanSelectHiddenExtension: undefined | boolean;
    Detached: undefined | boolean;
    Directory: undefined | string;
    Filename: undefined | string;
    Filters: undefined | FileFilter[];
    HideExtension: undefined | boolean;
    Message: undefined | string;
    ResolvesAliases: undefined | boolean;
    ShowHiddenFiles: undefined | boolean;
    Title: undefined | string;
    TreatsFilePackagesAsDirectories: undefined | boolean;
}

Properties

AllowsMultipleSelection: undefined | boolean

Indicates if multiple selection is allowed.

AllowsOtherFiletypes: undefined | boolean

Indicates if other file types are allowed.

ButtonText: undefined | string

Text to display on the button.

CanChooseDirectories: undefined | boolean

Indicates if directories can be chosen.

CanChooseFiles: undefined | boolean

Indicates if files can be chosen.

CanCreateDirectories: undefined | boolean

Indicates if directories can be created.

CanSelectHiddenExtension: undefined | boolean

Indicates if hidden extensions can be selected.

Detached: undefined | boolean

Indicates if the dialog should appear detached from the main window.

Directory: undefined | string

Directory to open in the dialog.

Filename: undefined | string

Default filename to use in the dialog.

Filters: undefined | FileFilter[]

Array of file filters.

HideExtension: undefined | boolean

Indicates if the extension should be hidden.

Message: undefined | string

Message to show in the dialog.

ResolvesAliases: undefined | boolean

Indicates if aliases should be resolved.

ShowHiddenFiles: undefined | boolean

Indicates if hidden files should be shown.

Title: undefined | string

Title of the dialog.

TreatsFilePackagesAsDirectories: undefined | boolean

Indicates if file packages should be treated as directories.

Generated using TypeDoc