API referenceText

pdfGetLastTextPosXAbs

Nominally: the last text X position in absolute (untransformed)

CategoryWrite-position tracking
Noteidentical 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

C
double __stdcall pdfGetLastTextPosXAbs(PPDF IPDF);
Delphi
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)

wrappers/dotnet/LumasPdf.cs
public static extern double pdfGetLastTextPosXAbs(IntPtr IPDF);
Area
Text
Category

Getters

Exported names

pdfGetLastTextPosXAbs

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.