This function starts the printing of a page.
[C++Builder/Visual
C++] BOOL IKPrintStartPage(HDC
hDC);
[Delphi] function
IKPrintStartPage(hDC: HDC): LongBool;
[Visual Basic] Function
IKPrintStartPage(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 IKPrintStartPage function starts the printing of a page. This function is used with the IKPrintStartDoc, IKPrintEndPage, and IKPrintEndDoc functions. Please refer to the sample code in the IKPrintCreateDC and IKPrintDlg functions.