Prints the merged document.
public void Print(System.Drawing.Printing.PrintDocument printDocument);
Public Sub Print(ByVal printDocument As System.Drawing.Printing.PrintDocument)
public void Print(string docName, string printerName, int copyCount, bool collate);
Public Sub Print(ByVal docName As String, ByVal printerName As String, ByVal copyCount As Integer, ByVal collate As Boolean)
Parameter | Description | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
print |
Specifies an instance of the Print
|
||||||||||||||||||||||
doc |
Specifies the document's name. | ||||||||||||||||||||||
printer |
Specifies the name of the printer to which the output is sent. | ||||||||||||||||||||||
copy |
Specifies the number of copies to print. | ||||||||||||||||||||||
collate | Collates output by printing every page of the first copy, then every page of the second copy, and so on. When collate is set to false, the printer prints every copy of the first page, then every copy of the second page, and so on. |