Click or drag to resize

DocumentSavingEventArgsSaveDocumentChanges Property

Gets or sets a value indicating whether changes made to Document should be saved so that the next time the document is loaded, these changes are seen.

Namespace:  RadPdf.Integration
Assembly:  RadPdf (in RadPdf.dll) Version: 3.44.0.0 (3.44.0.0)
Syntax
public bool SaveDocumentChanges { get; set; }

Property Value

Type: Boolean
true if changes made to the Document should be saved to storage; otherwise false. The default value is true.
Remarks

Even if true, changes made to the Document will not be reflected in client PdfWebControl instances until the next time the document is loaded. To display changes, document must be reloaded in client browser.

If false, changes made to the Document will not be saved to storage, but will still be reflected in the saved PDF data.

This property does not control whether or not the Document's PDF data is saved to storage. Unless Cancel is true, the Document's PDF data is always created (using the Document's state, including any changes made) and put into storage. This PDF data can be retreived in numerous ways including DocumentData and GetDocumentAsPdf(Int32).

See Also