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

ViewPrintOptionsBase.ShowPrintExportProgress Property

Gets or sets whether a separate window is used to indicate print/export progress.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v20.2.dll

NuGet Package: DevExpress.Win.Grid

Declaration

[DefaultValue(true)]
[XtraSerializableProperty]
public virtual bool ShowPrintExportProgress { get; set; }

Property Value

Type Default Description
Boolean **true**

true if a separate window is used to indicate print/export progress; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to ShowPrintExportProgress
AdvBandedGridView
.OptionsPrint .ShowPrintExportProgress
BandedGridView
.OptionsPrint .ShowPrintExportProgress
BaseView
.OptionsPrint .ShowPrintExportProgress
ColumnView
.OptionsPrint .ShowPrintExportProgress
CardView
.OptionsPrint .ShowPrintExportProgress
GridView
.OptionsPrint .ShowPrintExportProgress
LayoutView
.OptionsPrint .ShowPrintExportProgress
WinExplorerView
.OptionsPrint .ShowPrintExportProgress

Remarks

If this property is set to true, a progress window is displayed while the grid’s data is being exported or printed:

PrintExport_ProgressWindow

If the ViewPrintOptionsBase.AllowCancelPrintExport option is enabled, the progress window contains a Cancel button. This button allows an end-user to cancel the current print/export operation.

To indicate the print/export progress in a custom manner, handle the BaseView.PrintExportProgress event.

Note

The ShowPrintExportProgress property must be set to false if you print/export the grid’s data via PrintableComponentLink objects.

See Also