TXTextControl.SaveDialog Method

Opens the system 'Save As' dialogbox and saves a document as specified.

Introduced: 31.0.

Syntax

TXTextControl.SaveDialog Filters DialogOptions[, CurSelection]
Parameter Description
Filters

Defines the filters which the dialog box offers to select a file format. The values listed below can be added to set more than one filter:


Constant Description
AnsiText (&H1) Text only (ANSI)
HTML (&H4) HTML format (Hypertext Markup Language)
RTF (&H8) RTF format (Rich Text Format)
UnicodeText (&H10) Text only (Unicode)
TXFormat (&H20) Internal TX Text Control format
MSWord97_2003 (&H40) Microsoft Word 97-2003 format (.doc)
XML (&H80) XML format (Extensible Markup Language)
CSS (&H100) CSS format (Cascading Style Sheet)
AdobePDF (&H200) Adobe Portable Document Format
MSWord (&H400) Microsoft Word format (.docx)
AdobePDFA (&H800) Adobe Portable Document Format Archive
All (&H1FFF) All saveable formats
DialogOptions

Specifies additional options displayed in the dialog box. The values listed below can be added to set more than one option.


Constant Description
txNone (0) The dialogbox does not show additional options.
txPassword (1) PDF only: The dialogbox offers a button which opens a dialogbox to specify an encryption password. This button is shown only, if the user selects Adobe PDF or Adobe PDF/A as the file format to save the document.
txCSSOptions (2) HTML only: The dialogbox offers buttons to specify how to save formatting styles: Inline or in a separate file. These buttons are shown only, if the user selects Hypertext Markup Language as the file format to save the document.
txSaveSelection (4) The dialogbox offers a checkbox indicating that only the currently selected text is saved. This checkbox is shown only, if a text selection exists when the dialogbox is opened.
CurSelection

Optional. When set to True the current selection is saved. When omitted or set to False or when no selection exists all the control contents are saved.

Return Value

This method has no return value.

Data Types

Filters: Long
DialogOptions: Long
CurSelection: Boolean

Limitations

Needs at least Windows Vista.

See Also