Click or drag to resize

DocumentPrintingEventArgsPrintSource Property

Gets or sets a value representing which data the document represented by Document should be completely ignored and the previous copy of the document as last saved printed instead.

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

Property Value

Type: DocumentPrintSource
Remarks

If CurrentDocument, the current document represented by Document will be used for printing.

If LastSave, the document represented by Document will be ignored and the state of the document as last saved will be used for printing.

If OriginalDocument, the document represented by Document will be ignored and the document as originally loaded into RAD PDF will be used for printing.

Because printing does not save the document to RAD PDF's storage, some applications may wish to set this property to LastSave so that what is printed is the same as the last time saved.

If DocumentProperties indicates that IsReadOnly is set, the default value is OriginalDocument; otherwise the default value of this property is CurrentDocument.

See Also