[]
Shows the standard print dialog, allowing the user to print the current document.
public bool PrintDialog()
Public Function PrintDialog() As Boolean
| Type | Description |
|---|---|
| bool | true if the document was printed, false otherwise. |
Shows the standard print dialog, allowing the user to print the current document.
public bool PrintDialog(PrinterSettings printerSettings, int[] selectedPageNumbers, bool showProgress)
Public Function PrintDialog(printerSettings As PrinterSettings, selectedPageNumbers As Integer(), showProgress As Boolean) As Boolean
| Type | Name | Description |
|---|---|---|
| PrinterSettings | printerSettings | The printer settings to use. |
| int[] | selectedPageNumbers | The list of selected page numbers. If this parameter is not null, selection option is enabled in the dialog. |
| bool | showProgress | Indicates whether to show print progress. |
| Type | Description |
|---|---|
| bool | true if the document was printed, false otherwise. |