[]
        
(Showing Draft Content)

C1.C1Preview.C1PrintDocument.Print

Print Method

Print()

Prints the current document with default printer settings, not showing the print progress dialog.

Declaration
public void Print()

Print(PrinterSettings)

Prints the current document with specified printer settings, not showing the print progress dialog.

Declaration
public void Print(PrinterSettings printerSettings)
Parameters
Type Name Description
PrinterSettings printerSettings

The printer settings to use.

Print(PrinterSettings, bool)

Prints the document with specified printer settings, optionally showing the print progress dialog.

Declaration
public void Print(PrinterSettings printerSettings, bool showProgress)
Parameters
Type Name Description
PrinterSettings printerSettings

The printer settings to use.

bool showProgress

Flag indicating whether to show the print progress dialog.

Print(PrinterSettings, OutputRange)

Prints a range of pages of the current document with specified printer settings, not showing the print progress dialog.

Declaration
public void Print(PrinterSettings printerSettings, OutputRange outputRange)
Parameters
Type Name Description
PrinterSettings printerSettings

The printer settings to use.

OutputRange outputRange

The range of pages to export (use null to export all pages).

Print(PrinterSettings, OutputRange, bool)

Prints a range of pages of the current document with specified printer settings, optionally showing the print progress dialog.

Declaration
public void Print(PrinterSettings printerSettings, OutputRange outputRange, bool showProgress)
Parameters
Type Name Description
PrinterSettings printerSettings

The printer settings to use.

OutputRange outputRange

The range of pages to export (use null to export all pages).

bool showProgress

Flag indicating whether to show the progress dialog.

Print(PrinterSettings, PageSettings, OutputRange)

Prints a range of pages of the current document with specified printer and default page settings, not showing the print progress dialog.

Declaration
public void Print(PrinterSettings printerSettings, PageSettings defaultPageSettings, OutputRange outputRange)
Parameters
Type Name Description
PrinterSettings printerSettings

The printer settings to use.

PageSettings defaultPageSettings

The default page settings to use.

OutputRange outputRange

The range of pages to export (use null to print all pages).

Print(PrinterSettings, PageSettings, bool)

Prints the current document with specified printer and default page settings, optionally showing the print progress dialog.

Declaration
public void Print(PrinterSettings printerSettings, PageSettings defaultPageSettings, bool showProgress)
Parameters
Type Name Description
PrinterSettings printerSettings

The printer settings to use.

PageSettings defaultPageSettings

The default page settings to use.

bool showProgress

Flag indicating whether to show the progress dialog.

Print(PrinterSettings, PageSettings, OutputRange, bool)

Prints a range of pages of the current document with specified printer and default page settings, optionally showing the print progress dialog.

Declaration
public void Print(PrinterSettings printerSettings, PageSettings defaultPageSettings, OutputRange outputRange, bool showProgress)
Parameters
Type Name Description
PrinterSettings printerSettings

The printer settings to use.

PageSettings defaultPageSettings

The default page settings to use.

OutputRange outputRange

The range of pages to export (use null to print all pages).

bool showProgress

Flag indicating whether to show the progress dialog.