EndPage (Compact 2013)

3/28/2014

This function informs the device that the application has finished writing to a page. This function is typically used to direct the device driver to advance to a new page.

Syntax

int EndPage( 
  HDC hdc
);

Parameters

  • hdc
    [in] Handle to the device context (DC) for the print job.

Return Value

A value greater than zero indicates success. A value less than or equal to zero indicates failure. To get extended error information, call GetLastError.

Remarks

Neither EndPage or StartPage resets the device context attributes. Device context attributes remain constant across subsequent pages. You do not need to reselect objects and set up the mapping mode again before printing the next page; however, doing so produces identical printer output.

Requirements

Header

wingdi.h

Library

Mgprint.lib

See Also

Reference

Printing Functions
EndDoc
StartPage