Skip to main content
A newer version of this page is available. .

Document.IsModified Property

Indicates whether or not any changes were made to the Document instance after it was created.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Printing.v18.2.Core.dll

Declaration

public bool IsModified { get; }

Property Value

Type Description
Boolean

true, if the document was modified; otherwise, false.

Remarks

After Printing System has generated a Document (e.g., on calling the LinkBase.CreateDocument or XtraReport.CreateDocument method), you can access the collection of document pages using the Document.Pages property. This enables you to reorder pages, add pages from other documents or insert blank pages using the PrintingSystemBase.CreatePage method.

The IsModified property returns true if the collection of pages has been modified after its creation.

See Also