Skip to main content

PrintingSystemBase.End(Boolean) Method

Finishes a report’s generation.

Namespace: DevExpress.XtraPrinting

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

NuGet Package: DevExpress.Printing.Core

Declaration

public void End(
    bool buildForInstantPreview
)

Parameters

Name Type Description
buildForInstantPreview Boolean

true to enable accessing document pages progressively as they are created; otherwise false.

Remarks

This method signals that report generation has finished. All bricks created after calling the PrintingSystemBase.Begin method and before calling the End method are included in the report.

No changes can be applied to a report after the End method has been called.

Note

The number of PrintingSystemBase.Begin method calls must equal the number of End method calls.

See Also