DocumentPartSavingArgs class

DocumentPartSavingArgs class

Provides data for the IDocumentPartSavingCallback.document_part_saving() callback. To learn more, visit the Save a Document documentation article.

Remarks

When Aspose.Words saves a document to HTML or related formats and HtmlSaveOptions.document_split_criteria is specified, the document is split into parts and by default, each document part is saved into a separate file.

Class DocumentPartSavingArgs allows you to control how each document part will be saved. It allows to redefine how file names are generated or to completely circumvent saving of document parts into files by providing your own stream objects.

To save document parts into streams instead of files, use the DocumentPartSavingArgs.document_part_stream property.

Properties

NameDescription
documentGets the document object that is being saved.
document_part_file_nameGets or sets the file name (without path) where the document part will be saved to.
document_part_streamAllows to specify the stream where the document part will be saved to.
keep_document_part_stream_openSpecifies whether Aspose.Words should keep the stream open or close it after saving a document part.

See Also