The DisplayPrintStatus is used to determine whether a status dialog will be displayed while the associated UltraPrintPreviewDialog.Document is being printed to the printer. The value of this property is initialized based on the UltraPrintPreviewDialog.DisplayPrintStatus property.
Imports Infragistics.Win Imports Infragistics.Win.Printing Imports Infragistics.Win.UltraWinGrid Imports Infragistics.Win.UltraWinScrollBar Imports Infragistics.Win.UltraWinToolbars Private Sub ultraPrintPreviewDialog1_Printing(ByVal sender As Object, ByVal e As Infragistics.Win.Printing.PrintingEventArgs) Handles ultraPrintPreviewDialog1.Printing ' cast the sender to a UltraPrintPreviewDialog Dim printPreviewDialog As UltraPrintPreviewDialog = CType(sender, UltraPrintPreviewDialog) ' specify whether a status dialog will be displayed ' during the print operation e.DisplayPrintStatus = True ' to cancel the print operation set Cancel to true ' e.Cancel = true End Sub
using Infragistics.Win; using Infragistics.Win.Printing; using Infragistics.Win.UltraWinGrid; using Infragistics.Win.UltraWinScrollBar; using Infragistics.Win.UltraWinToolbars; private void ultraPrintPreviewDialog1_Printing(object sender, Infragistics.Win.Printing.PrintingEventArgs e) { // cast the sender to a UltraPrintPreviewDialog UltraPrintPreviewDialog printPreviewDialog = sender as UltraPrintPreviewDialog; // specify whether a status dialog will be displayed // during the print operation e.DisplayPrintStatus = true; // to cancel the print operation set Cancel to true // e.Cancel = true; }
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2