Aspose::Pdf::PptxSaveOptions class

PptxSaveOptions class

Save options for export to SVG format.

class PptxSaveOptions : public Aspose::Pdf::UnifiedSaveOptions

Methods

MethodDescription
get_CacheGlyphs() constGets boolean value which indicates if will font glyphs be cached while preparing aps pages. Improves performance of conversion pdf to other formats but increases memory consumption.
get_CloseResponse() constGets boolean value which indicates will Response object be closed after document saved into response.
get_CustomProgressHandler() constThis handler can be used to handle conversion progress events f.e. it can be used to show progress bar or messages about current amount of processed pages, example of handler’s code that shows progress on console is :
get_ExtractOcrSublayerOnly() constThis atrribute turned on functionality for extracting image or text for PDF documents with OCR sublayer.
get_ImageResolution() constGets the image resolution (dpi). Default is 192 dpi.
get_OptimizeTextBoxes() constToggles text columns recognition.
get_SaveFormat() constFormat of data save.
get_SeparateImages() constIf set to true then images are separated from all other graphics.
get_SlidesAsImages() constIf set to true then all the content is recognized as images (one per page)
get_WarningHandler() constCallback 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.
PptxSaveOptions()Constructor.
set_CacheGlyphs(bool)Sets boolean value which indicates if will font glyphs be cached while preparing aps pages. Improves performance of conversion pdf to other formats but increases memory consumption.
set_CloseResponse(bool)Sets boolean value which indicates will Response object be closed after document saved into response.
set_CustomProgressHandler(UnifiedSaveOptions::ConversionProgressEventHandler)This handler can be used to handle conversion progress events f.e. it can be used to show progress bar or messages about current amount of processed pages, example of handler’s code that shows progress on console is :
set_ExtractOcrSublayerOnly(bool)This atrribute turned on functionality for extracting image or text for PDF documents with OCR sublayer.
set_ImageResolution(int32_t)Sets the image resolution (dpi). Default is 192 dpi.
set_OptimizeTextBoxes(bool)Toggles text columns recognition.
set_SeparateImages(bool)If set to true then images are separated from all other graphics.
set_SlidesAsImages(bool)If set to true then all the content is recognized as images (one per page)
set_WarningHandler(System::SharedPtr<IWarningCallback>)Callback 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.
UnifiedSaveOptions()

See Also