This function ends the printing of a page and goes to the next page. This function needs to be called at the end of each page.
[C++Builder/Visual
C++] BOOL IKPrintEndPage(HDC
hDC);
[Delphi] function
IKPrintEndPage(hDC: HDC): LongBool;
[Visual Basic] Function
IKPrintEndPage(ByVal hDC As Long) As Long
Parameters
Name | Explanation |
---|---|
hDC | The device context retrieved by the IKPrintDlg or IKPrintCreateDC functions |
Return Value
Returns True (nonzero) if successful. Returns False (0) if unsuccessful.
Explanation
The IKPrintEndPage function ends the printing of a page and goes to the next page. This function is used with the IKPrintStartDoc, IKPrintStartPage, and IKPrintEndDoc functions. Please refer to the sample code in the IKPrintCreateDC and IKPrintDlg functions.
The differences from the ImageKit5
A new return value has been added.