DocumentPartSavingArgs class

DocumentPartSavingArgs class

Provides data for the IDocumentPartSavingCallback.documentPartSaving() 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.documentSplitCriteria 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 Aspose.Words.Saving.DocumentPartSavingArgs.DocumentPartStream property.

Properties

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

See Also