Represents a common dialog box that displays a file save dialog to the user to select a location for saving a file.
| Windows | macOS | Gnome | |
|---|---|---|---|
| Light |
|
|
|
| Dark |
|
|
|
Public Static Methods | |
| static auto | show (xtd::string &file_name, const xtd::forms::iwin32_window &owner) -> xtd::forms::dialog_result |
| Displays a save file dialog box in front of a specified window. | |
| static auto | show (xtd::string &file_name, const xtd::forms::iwin32_window &owner, const xtd::string &title) -> xtd::forms::dialog_result |
| Displays a save file dialog box in front of a specified window. | |
| static auto | show (xtd::string &file_name, const xtd::forms::iwin32_window &owner, const xtd::string &title, const xtd::forms::save_file_box_options options) -> xtd::forms::dialog_result |
| Displays a save file dialog box in front of a specified window. | |
| static auto | show (xtd::string &file_name, const xtd::forms::iwin32_window &owner, const xtd::string &title, const xtd::string &initial_directory) -> xtd::forms::dialog_result |
| Displays a save file dialog box in front of a specified window. | |
| static auto | show (xtd::string &file_name, const xtd::forms::iwin32_window &owner, const xtd::string &title, const xtd::string &initial_directory, const xtd::forms::save_file_box_options options) -> xtd::forms::dialog_result |
| Displays a save file dialog box in front of a specified window. | |
| static auto | show (xtd::string &file_name, const xtd::forms::iwin32_window &owner, const xtd::string &title, const xtd::string &initial_directory, const xtd::string &filter) -> xtd::forms::dialog_result |
| Displays a save file dialog box in front of a specified window. | |
| static auto | show (xtd::string &file_name, const xtd::forms::iwin32_window &owner, const xtd::string &title, const xtd::string &initial_directory, const xtd::string &filter, const xtd::forms::save_file_box_options options) -> xtd::forms::dialog_result |
| Displays a save file dialog box in front of a specified window. | |
| static auto | show (xtd::string &file_name) -> xtd::forms::dialog_result |
| Displays a save file dialog box. | |
| static auto | show (xtd::string &file_name, const xtd::string &title) -> xtd::forms::dialog_result |
| Displays a save file dialog box. | |
| static auto | show (xtd::string &file_name, const xtd::string &title, const xtd::forms::save_file_box_options options) -> xtd::forms::dialog_result |
| Displays a select file dialog box. | |
| static auto | show (xtd::string &file_name, const xtd::string &title, const xtd::string &initial_directory) -> xtd::forms::dialog_result |
| Displays a save file dialog box. | |
| static auto | show (xtd::string &file_name, const xtd::string &title, const xtd::string &initial_directory, const xtd::forms::save_file_box_options options) -> xtd::forms::dialog_result |
| Displays a save file dialog box. | |
| static auto | show (xtd::string &file_name, const xtd::string &title, const xtd::string &initial_directory, const xtd::string &filter) -> xtd::forms::dialog_result |
| Displays a save file dialog box. | |
| static auto | show (xtd::string &file_name, const xtd::string &title, const xtd::string &initial_directory, const xtd::string &filter, const xtd::forms::save_file_box_options options) -> xtd::forms::dialog_result |
| Displays a save file dialog box. | |
|
staticnodiscard |
Displays a save file dialog box in front of a specified window.
| file_name | An output xtd::string that will store the selected file name. |
| owner | An If xtd::forms::iwin32_window that represents the owner window of the file dialog box. |
|
staticnodiscard |
Displays a save file dialog box in front of a specified window.
| file_name | An output xtd::string that will store the selected file name. |
| owner | An If xtd::forms::iwin32_window that represents the owner window of the file dialog box. |
| title | An xtd::string that specifies the caption title of the file dialog box. |
|
staticnodiscard |
Displays a save file dialog box in front of a specified window.
| file_name | An output xtd::string that will store the selected file name. |
| owner | An If xtd::forms::iwin32_window that represents the owner window of the file dialog box. |
| title | An xtd::string that specifies the caption title of the file dialog box. |
| options | A bitwise combination of enum xtd::forms::save_file_box_options to specify additional options to the file dialog box |
|
staticnodiscard |
Displays a save file dialog box in front of a specified window.
| file_name | An output xtd::string that will store the selected file name. |
| owner | An If xtd::forms::iwin32_window that represents the owner window of the file dialog box. |
| title | An xtd::string that specifies the caption title of the file dialog box. |
| initial_directory | An xtd::string that specifies the initial directory displayed by the file dialog box |
|
staticnodiscard |
Displays a save file dialog box in front of a specified window.
| file_name | An output xtd::string that will store the selected file name. |
| owner | An If xtd::forms::iwin32_window that represents the owner window of the file dialog box. |
| title | An xtd::string that specifies the caption title of the file dialog box. |
| initial_directory | An xtd::string that specifies the initial directory displayed by the file dialog box |
| options | A bitwise combination of enum xtd::forms::save_file_box_options to specify additional options to the file dialog box |
|
staticnodiscard |
Displays a save file dialog box in front of a specified window.
| file_name | An output xtd::string that will store the selected file name. |
| owner | An If xtd::forms::iwin32_window that represents the owner window of the file dialog box. |
| title | An xtd::string that specifies the caption title of the file dialog box. |
| initial_directory | An xtd::string that specifies the initial directory displayed by the file dialog box |
| filter | An xtd::string that specifies the file name filter string, which determines the choices that appear in the "Save as file type" or "Files of type" box in the dialog box, separated by vertical bar | for example: (*.txt)|*.txt|All files (*.*)|*.* |
|
staticnodiscard |
Displays a save file dialog box in front of a specified window.
| file_name | An output xtd::string that will store the selected file name. |
| owner | An If xtd::forms::iwin32_window that represents the owner window of the file dialog box. |
| title | An xtd::string that specifies the caption title of the file dialog box. |
| initial_directory | An xtd::string that specifies the initial directory displayed by the file dialog box |
| filter | An xtd::string that specifies the file name filter string, which determines the choices that appear in the "Save as file type" or "Files of type" box in the dialog box, separated by vertical bar | for example: (*.txt)|*.txt|All files (*.*)|*.* |
| options | A bitwise combination of enum xtd::forms::save_file_box_options to specify additional options to the file dialog box |
|
staticnodiscard |
Displays a save file dialog box.
| file_name | An output xtd::string that will store the selected file name. |
|
staticnodiscard |
Displays a save file dialog box.
| file_name | An output xtd::string that will store the selected file name. |
| title | An xtd::string that specifies the caption title of the file dialog box. |
|
staticnodiscard |
Displays a select file dialog box.
| file_name | An output xtd::string that will store the selected file name. |
| title | An xtd::string that specifies the caption title of the file dialog box. |
| options | A bitwise combination of enum xtd::forms::save_file_box_options to specify additional options to the file dialog box |
|
staticnodiscard |
Displays a save file dialog box.
| file_name | An output xtd::string that will store the selected file name. |
| title | An xtd::string that specifies the caption title of the file dialog box. |
| initial_directory | An xtd::string that specifies the initial directory displayed by the file dialog box |
|
staticnodiscard |
Displays a save file dialog box.
| file_name | An output xtd::string that will store the selected file name. |
| title | An xtd::string that specifies the caption title of the file dialog box. |
| initial_directory | An xtd::string that specifies the initial directory displayed by the file dialog box |
| options | A bitwise combination of enum xtd::forms::save_file_box_options to specify additional options to the file dialog box |
|
staticnodiscard |
Displays a save file dialog box.
| file_name | An output xtd::string that will store the selected file name. |
| title | An xtd::string that specifies the caption title of the file dialog box. |
| initial_directory | An xtd::string that specifies the initial directory displayed by the file dialog box |
| filter | An xtd::string that specifies the file name filter string, which determines the choices that appear in the "Save as file type" or "Files of type" box in the dialog box, separated by vertical bar | for example: (*.txt)|*.txt|All files (*.*)|*.* |
|
staticnodiscard |
Displays a save file dialog box.
| file_name | An output xtd::string that will store the selected file name. |
| title | An xtd::string that specifies the caption title of the file dialog box. |
| initial_directory | An xtd::string that specifies the initial directory displayed by the file dialog box |
| filter | An xtd::string that specifies the file name filter string, which determines the choices that appear in the "Save as file type" or "Files of type" box in the dialog box, separated by vertical bar | for example: (*.txt)|*.txt|All files (*.*)|*.* |
| options | A bitwise combination of enum xtd::forms::save_file_box_options to specify additional options to the file dialog box |