C
BOOL32 __stdcall pdfEditPage(PPDF IPDF, int32_t PageNum);
BOOL32 __stdcall pdfEndPage(PPDF IPDF);
Delphi
function pdfEditPage(const IPDF: PPDF; PageNum: Integer): LongBool; stdcall;
function pdfEndPage(const IPDF: PPDF): LongBool; stdcall;
Purpose. Reopen an existing page for further content edits (pdfEditPage); close out the currently-open page/edit session (pdfEndPage).
Parameters.
| Parameter | Description |
|---|---|
IPDF | Document handle. |
PageNum | *(EditPage only)* 1-based page to reopen. |
Return value. True on success; False if PageNum is out of range or IPDF is invalid.
C# (P/Invoke)
wrappers/dotnet/LumasPdf.cs
[return: MarshalAs(UnmanagedType.Bool)]
Area
Core SDK
Category
Core
Exported names
pdfEndPage
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.