| Category | Parsed operator bit-field helper |
|---|
Purpose — Set the text render-mode field within a packed DrawParms bitmask, in place.
Declarations
C
void __stdcall psrSetTextDrawMode(uint32_t* DrawParms, TDrawMode Value);
Delphi
procedure psrSetTextDrawMode(var DrawParms: Cardinal; Value: TDrawMode); stdcall; external 'LumasPdf.dll';
Parameters
| Parameter | Type | Description |
|---|---|---|
DrawParms | Cardinal* | Bitmask to modify in place; bits 20..27 are replaced with Value, all other bits preserved. NULL is a no-op. |
Value | TDrawMode | New text draw mode. |
Return value — None (procedure).
See also — psrGetTextDrawMode
C# (P/Invoke)
wrappers/dotnet/LumasPdf.cs
public static extern void psrSetTextDrawMode(ref uint DrawParms, TDrawMode Value);
Area
Text
Category
Misc
Exported names
psrSetTextDrawMode
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.