Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.Reporting.v4.3 Assembly / Xceed.Grid.Reporting Namespace / Report Class / Print Method / Print(Boolean) Method
true if the progression dialog should be shown during the printing process; false otherwise.


In This Topic
    Print(Boolean) Method
    In This Topic
    Prints the report.
    Syntax
    'Declaration
     
    Public Overloads Sub Print( _
       ByVal showProgressionDialog As Boolean _
    ) 
    'Usage
     
    Dim instance As Report
    Dim showProgressionDialog As Boolean
     
    instance.Print(showProgressionDialog)
    public void Print( 
       bool showProgressionDialog
    )

    Parameters

    showProgressionDialog
    true if the progression dialog should be shown during the printing process; false otherwise.
    Remarks

    The report will be printed with the default System.Drawing.Printing.PrinterSettings. The standard Windows PrintDialog will be displayed before the printing process begins in order to modify, if necessary, the printer settings. To prevent this form from being displayed, the Print overload that accepts a System.Drawing.Printing.PrinterSettings can be used.

    When the Print method is called, the standard .NET print process will be used. For certain printers, such as FinePrint, "Microsoft Office Document Image Writer", or PrintToFile, this may result in a Win32Exception when the user cancels the process.

    Requirements

    Target Platforms: 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

    See Also