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

PrintingSystem.PreviewFormEx Property

Gets the form used to display the document preview.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.XtraPrinting.v19.1.dll

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();

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the PreviewFormEx property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also