TextObjectSetTextLeading Method

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Sets the text leading. It specifies the vertical distance between the baselines of adjacent lines of text.

Namespace:  Apitron.PDF.Kit.FixedLayout.Content
Assembly:  Apitron.PDF.Kit (in Apitron.PDF.Kit.dll) Version: 2.0.37.0 (2.0.37.0)
Syntax

public void SetTextLeading(
	double leading
)

Parameters

leading
Type: SystemDouble
The leading.
Remarks

Examples

C#
TextObject text = new TextObject("Helvetica", 11);
text.SetTextLeading(16);
text.AppendText("1st line");
text.AppendTextLine("2nd line");
See Also

Reference