PdfSaveOptions

PdfSaveOptions class

Save options for export to Pdf format

The PdfSaveOptions type exposes the following members:

Constructors

NameDescription
PdfSaveOptions()Initializes a new instance of the PdfSaveOptions class

Properties

NameDescription
warning_handlerCallback to handle any warnings generated.
The WarningHandler returns ReturnAction enum item specifying either Continue or Abort.
Continue is the default action and the Save operation continues, however the user may also return Abort in which case the Save operation should cease.
save_formatFormat of data save.
close_responseGets or sets boolean value which indicates will Response object be closed after document saved into response.
temp_pathPath for temporary files.
default_font_nameFont name used by default for fonts which are absent on computer.
When the PDF document that is saved into PDF contains fonts, that are not available
in the document itself and on the device, API replaces this fonts with the
default font(if font with default_font_name is found on device)

See Also