1
Q:
A) In the BeginPrint event, set the HasMorePages property of the PrintEventArgs object to True. | B) In the EndPrint event, set the HasMorePages property of the PrintEventArgs object to True. |
C) In the PrintPage event, set the HasMorePages property of the PrintPageEventArgs object to True. | D) In the QueryPageSettings event, set the HasMorePages property of the QueryPageSettingEventArgs object to True. |
Answer: C) In the PrintPage event, set the HasMorePages property of the PrintPageEventArgs object to True.
Explanation:
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.