Options for saving a document before closing or quitting.
| Name | Description | Value |
|---|---|---|
| NO | Does not save changes. | 1852776480 = ‘no ‘ |
| ASK | Displays a prompts asking whether to save changes. | 1634954016 = ‘ask ‘ |
| YES | Saves changes. | 2036691744 = ‘yes ‘ |
Usage:
- In function:
-
void Application.quit (
[saving:
SaveOptions =ASK ]
) -
void Book.close (
[saving:
SaveOptions =ASK ][, savingIn:
File][, versionComments:
string][, forceSave:
bool=false ]
) -
void Document.close (
[saving:
SaveOptions =ASK ][, savingIn:
File][, versionComments:
string][, forceSave:
bool=false ]
)
-
void Application.quit (