Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PdfDocumentProcessor.SaveDocument(Stream, PdfSaveOptions, Boolean) Method

Saves the current PDF document to the specified stream with encryption settings and document signature using detach stream mode.

Namespace: DevExpress.Pdf

Assembly: DevExpress.Docs.v24.2.dll

NuGet Package: DevExpress.Document.Processor

#Declaration

public void SaveDocument(
    Stream stream,
    PdfSaveOptions options,
    bool detachStream
)

#Parameters

Name Type Description
stream Stream

A Stream object that is the stream to which the PDF document is saved.

options PdfSaveOptions

A PdfSaveOptions object that contains the encryption settings and document signature that should be saved.

detachStream Boolean

true, the PDF Document API component completes all operations after saving a document; false, the stream should not be closed or modified while a PDF document is saved.

#Remarks

When you dispose of an output stream that has not been detached, an attempt to apply further changes to a document may cause errors. Pass true as the detachStream method parameter to safely close the stream when a document is saved.

Using the same stream for loading and saving a document may cause unpredictable results if the detachStream parameter is set to false.

Important

The PdfDocumentProcessor removes existing signatures from a document when it is saved. However, if you use PdfDocumentProcessor to apply a signature, it is retained.

See Also