Skip to main content

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.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

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
BaseView
.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