pdfGetErrLogMessageCount
Number of entries currently in the indexed error log.
| Category | Error handling |
|---|
Purpose — Number of entries currently in the indexed error log.
Description — Returns FErrLogCount, the count of errors accumulated so far (bounded by pdfSetMaxErrLogMsgCount, default 100).
Declarations
C
int32_t __stdcall pdfGetErrLogMessageCount(PPDF IPDF);
Delphi
function pdfGetErrLogMessageCount(const IPDF: PPDF): Integer; stdcall; external 'LumasPdf.dll';
Return value — Entry count (0 if none or if the handle is invalid).
See also — pdfGetErrLogMessage
C# (P/Invoke)
wrappers/dotnet/LumasPdf.cs
public static extern int pdfGetErrLogMessageCount(IntPtr IPDF);
Area
Core SDK
Category
Getters
Exported names
pdfGetErrLogMessageCount
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.