pdfGetLastTextPosXAbs
Nominally: the last text X position in absolute (untransformed)
| Category | Write-position tracking |
|---|---|
| Note | identical to pdfGetLastTextPosX (see Remarks) |
Purpose — Nominally: the last text X position in absolute (untransformed) page space, as distinct from pdfGetLastTextPosX's (potentially matrix-relative) value.
Declarations
double __stdcall pdfGetLastTextPosXAbs(PPDF IPDF);
function pdfGetLastTextPosXAbs(const IPDF: PPDF): Double; stdcall; external 'LumasPdf.dll';
Return value — Same as pdfGetLastTextPosX.
Remarks — verified duplicate. This wrapper calls the exact same GetLastTextPosX as the non-Abs function — there is no separate "absolute" tracking or CTM un-transformation performed. The two APIs are presently interchangeable in this build.
C# (P/Invoke)
public static extern double pdfGetLastTextPosXAbs(IntPtr IPDF);
Getters
pdfGetLastTextPosXAbs
The …A form takes UTF-8, …W
takes UTF-16; a bare name aliases the ANSI form.
Worked examples — complete programs in ten languages.