Skip to main content
All docs
V23.2

IBasePrintable.Finalize(PrintingSystemBase, LinkBase) Method

If implemented by a class, finalizes the printing of the report.

Namespace: DevExpress.XtraPrinting

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

NuGet Package: DevExpress.Printing.Core

Declaration

void Finalize(
    PrintingSystemBase ps,
    LinkBase link
)

Parameters

Name Type Description
ps PrintingSystemBase

An object used to print a control.

link LinkBase

An object which refers to a control.

Remarks

Use the Finalize method to perform all the required actions when the printing of a control is finished (for instance, it may be necessary to release a printer object, or set the temporarily used printing objects to null.) The Finalize method is used to dispose all intermediate resources that are engaged in the process of a document’s creation.

See Also