CreatePoint Method of the Engine Object
This method creates the Point object representing the point with the specified coordinates.
Syntax
HRESULT CreatePoint( int X, int Y, IPoint** Result );
Parameters
- X
- [in] This parameter specifies the horizontal coordinate of the point. It is optional, and if you do not specify it, the horizontal coordinate will be equal to 0.
- Y
- [in] This parameter specifies the vertical coordinate of the point. It is optional, and if you do not specify it, the vertical coordinate will be equal to 0.
- Result
- [out, retval] A pointer to IPoint* pointer variable that receives the interface pointer of the resulting Point object. Must not be NULL.
Return values
This method has no specific return values. It returns the standard return values of ABBYY FineReader Engine functions.
See also
7/3/2024 8:50:25 AM