| Category | Path construction |
|---|
Purpose — Begin a new subpath at (PosX, PosY) (PDF m operator).
Declarations
C
BOOL32 __stdcall pdfMoveTo(PPDF IPDF, double PosX, double PosY);
Delphi
function pdfMoveTo(const IPDF: PPDF; PosX, PosY: Double): LongBool; stdcall; external 'LumasPdf.dll';
Parameters
| Parameter | Type | Description |
|---|---|---|
IPDF | PPDF | Instance handle with an open page/content stream. |
PosX, PosY | Double | New subpath start point. |
Return value — TRUE on success; FALSE if no content stream is open.
See also — pdfLineTo
C# (P/Invoke)
wrappers/dotnet/LumasPdf.cs
[return: MarshalAs(UnmanagedType.Bool)]
Area
Graphics
Category
Core
Exported names
pdfMoveTo
String variants
The …A form takes UTF-8, …W
takes UTF-16; a bare name aliases the ANSI form.
See working code
Worked examples — complete programs in ten languages.