| Category | Text output |
|---|
Purpose — Close the text-continuation cursor opened by pdfBeginContinueText.
Declarations
C
int32_t __stdcall pdfEndContinueText(PPDF IPDF);
Delphi
function pdfEndContinueText(const IPDF: PPDF): Integer; stdcall; external 'LumasPdf.dll';
Return value — 1 if the cursor was active and is now closed; 0 if no pdfBeginContinueText was active (nothing to end) or the handle is invalid.
See also — pdfBeginContinueText
C# (P/Invoke)
wrappers/dotnet/LumasPdf.cs
public static extern int pdfEndContinueText(IntPtr IPDF);
Area
Text
Category
Core
Exported names
pdfEndContinueText
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.