PdfPageEditor.MovePosition

PdfPageEditor.MovePosition method

Moves the origin from (0, 0) to the point that appointted. The origin is left-bottom and the unit is point(1 inch = 72 points).

public void MovePosition(float moveX, float moveY)
ParameterTypeDescription
moveXSingleX-coordinate.
moveYSingleY-coordinate.

Examples

PdfPageEditor editor = new PdfPageEditor();
editor.BindPdf("input.pdf");
editor.MovePosition(-100, 60);
editor.Save("moved.pdf");

See Also