pdfSetExtFillColorSpace
Nominally: set the "current" extended fill color space handle.
| Category | Extended color space (non-functional) |
|---|---|
| Availability | Non-functional (write-only) — see the chapter note above |
Purpose — Nominally: set the "current" extended fill color space handle.
Description — Same pattern as pdfSetExtColorSpace: stores Handle into FExtFillCSH, always returns TRUE, is never read elsewhere.
Declarations
C
BOOL32 __stdcall pdfSetExtFillColorSpace(PPDF IPDF, uint32_t Handle);
Delphi
function pdfSetExtFillColorSpace(const IPDF: PPDF; Handle: Cardinal): LongBool; stdcall; external 'LumasPdf.dll';
Parameters
| Parameter | Type | Description |
|---|---|---|
IPDF | PPDF | Instance handle. |
Handle | Cardinal | Accepted and stored; has no effect on output. |
Return value — Always TRUE on a valid handle.
See also — pdfSetExtColorSpace
C# (P/Invoke)
wrappers/dotnet/LumasPdf.cs
[return: MarshalAs(UnmanagedType.Bool)]
Area
Text
Category
Setters
Exported names
pdfSetExtFillColorSpace
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.