Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PrintingSystem.PreviewFormEx Property

Gets the form used to display the document preview.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.XtraPrinting.v24.2.dll

NuGet Package: DevExpress.Win.Printing

#Declaration

[Browsable(false)]
public virtual PrintPreviewFormEx PreviewFormEx { get; }

#Property Value

Type Description
PrintPreviewFormEx

A PrintPreviewFormEx object which represents the current preview form.

#Remarks

Use the PreviewFormEx property to access the Print Preview Form used to preview the document created by this PrintingSystem. This form consists of the PrintControl object, and the Tool Bar, the Status Bar, and the Menu elements controlled via the PrintBarManager object.

The standard appearance of the Print Preview Form is shown in the image below.

PrintPreviewFormEx.png

#Example

The following example demonstrates how to show the PrintPreviewFormEx of the PrintingSystem component.

printingSystem1.PreviewFormEx.Show();
See Also