Correct Answer: In the PrintPage event, set the HasMorePages property of the PrintPageEventArgs object to True.
Explanation:
PrintDocument.PrintPage Event occurs when the output to print for the current page is needed. This event has the HasMorePages property which gets or sets a value indicating whether an additional page should be printed.
Discussion & Comments