FPDFPageObj_CreateNewPath method

FPDF_PAGEOBJECT FPDFPageObj_CreateNewPath(
  1. double x,
  2. double y
)

Create a new path object at an initial position.

x - initial horizontal position. y - initial vertical position.

Returns a handle to a new path object.

Implementation

FPDF_PAGEOBJECT FPDFPageObj_CreateNewPath(double x, double y) {
  return _FPDFPageObj_CreateNewPath(x, y);
}