pdfSetExtStrokeColorSpace
Nominally: set the "current" extended stroke color space
| Category | Extended color space (non-functional) |
|---|---|
| Availability | Non-functional (write-only) — see the chapter note above |
Purpose — Nominally: set the "current" extended stroke color space handle.
Description — Same pattern as pdfSetExtColorSpace: stores Handle into FExtStrokeCSH, always returns TRUE, is never read elsewhere.
Declarations
C
BOOL32 __stdcall pdfSetExtStrokeColorSpace(PPDF IPDF, uint32_t Handle);
Delphi
function pdfSetExtStrokeColorSpace(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
pdfSetExtStrokeColorSpace
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.