@wailsio/runtime
    Preparing search index...

    Interface SaveFileDialogOptions

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

    Properties

    AllowsOtherFiletypes?: boolean

    Indicates if other file types are allowed.

    ButtonText?: string

    Text to display on the button.

    CanChooseDirectories?: boolean

    Indicates if directories can be chosen.

    CanChooseFiles?: boolean

    Indicates if files can be chosen.

    CanCreateDirectories?: boolean

    Indicates if directories can be created.

    CanSelectHiddenExtension?: boolean

    Indicates if hidden extensions can be selected.

    Detached?: boolean

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

    Directory?: string

    Directory to open in the dialog.

    Filename?: string

    Default filename to use in the dialog.

    Filters?: FileFilter[]

    Array of file filters.

    HideExtension?: boolean

    Indicates if the extension should be hidden.

    Message?: string

    Message to show in the dialog.

    ResolvesAliases?: boolean

    Indicates if aliases should be resolved.

    ShowHiddenFiles?: boolean

    Indicates if hidden files should be shown.

    Title?: string

    Title of the dialog.

    TreatsFilePackagesAsDirectories?: boolean

    Indicates if file packages should be treated as directories.