| Category | Text state |
|---|
Purpose — Set text rise; emitted immediately as a Ts operator.
Declarations
C
BOOL32 __stdcall pdfSetTextRise(PPDF IPDF, double Value);
Delphi
function pdfSetTextRise(const IPDF: PPDF; Value: Double): LongBool; stdcall; external 'LumasPdf.dll';
Parameters
| Parameter | Type | Description |
|---|---|---|
IPDF | PPDF | Instance handle with an open page. |
Value | Double | Rise, positive = raised above baseline (superscript), negative = lowered (subscript). |
Return value — TRUE on success; FALSE if no page is open.
See also — pdfGetTextRise
C# (P/Invoke)
wrappers/dotnet/LumasPdf.cs
[return: MarshalAs(UnmanagedType.Bool)]
Area
Text
Category
Setters
Exported names
pdfSetTextRise
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.