Purpose — Create a form-reset action.
Description — Registers action kind 8 with no payload — a reset action that (per the PDF default) resets every form field to its default value when triggered. There is no field-selection parameter on this entry point; a scoped reset is not representable through this call.
Declarations
C
int32_t __stdcall pdfCreateResetAction(PPDF IPDF);
Delphi
function pdfCreateResetAction(const IPDF: PPDF): Integer; stdcall; external 'LumasPdf.dll';
Return value — 1-based action handle (> 0), or 0 on an invalid handle.
C# (P/Invoke)
wrappers/dotnet/LumasPdf.cs
public static extern int pdfCreateResetAction(IntPtr IPDF);
Area
Core SDK
Category
Object Creation
Exported names
pdfCreateResetAction
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.