API referenceCore SDK

pdfGetLumasPDFVersionInt

Return the version as a single comparable integer.

CategoryVersion

Purpose — Return the version as a single comparable integer.

Description — Encodes the version as Major·10⁷ + Minor·10⁵ + Release·10³ + Patch — the same scheme used by the flat-C-API-compatible ABI — so numeric comparison orders releases correctly.

Declarations

C
int32_t __stdcall pdfGetLumasPDFVersionInt(void);
Delphi
function pdfGetLumasPDFVersionInt(): Integer; stdcall; external 'LumasPdf.dll';

Return value — The encoded integer (e.g. 1.0.0.010000000). Takes no instance.

See alsopdfGetLumasPDFVersion

C# (P/Invoke)

wrappers/dotnet/LumasPdf.cs
public static extern int pdfGetLumasPDFVersionInt();
Area
Core SDK
Category

Getters

Exported names

pdfGetLumasPDFVersionInt

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.