FPDFPath_MoveTo method
Move a path's current point.
path - the handle to the path object. x - the horizontal position of the new current point. y - the vertical position of the new current point.
Note that no line will be created between the previous current point and the new one.
Returns TRUE on success
Implementation
int FPDFPath_MoveTo(FPDF_PAGEOBJECT path, double x, double y) {
return _FPDFPath_MoveTo(path, x, y);
}