class fileSaveDialog

superclass(es) fileDialog
subclass(es) -
description The fileSaveDialog class implements a standard "File Save" dialog, it extends it's base class by an execute method which is used to display the modal dialog.

tasks

Usually there are three steps for a "File Save" dialog is shown;
1. Set the initial folder.
2. Add one or more file filters.
3. Call method execute/2 to show the dialog.

methods

execute(Parent, Output)

func Show the "File Save" dialog, a parent window must be specified and the Output variable will contain a boolean value which indicates the button that was pressed to close the dialog.
pre Parent must refer to a window instance.
post The Output variable is assigned true if the dialog was closed by pressing on the "OK" button, else false is assigned to the Output.