TextObjectMoveToNextLine Method

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Move to the start of the next line, offset from the start of the current line by current leading.

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 MoveToNextLine()
Remarks

Examples

C#
TextObject text = new TextObject(StandardFonts.CourierBold, 20);
text.SetTextRenderingMode(RenderingMode.FillAndStrokeText);
text.SetTextMatrix(1, 0, 0, 1, 10, (Boundaries.A4).Height - 50);
text.SetTextLeading(25);
text.AppendText("The first line !");
text.MoveToNextLine(); 
text.AppendText("The secont line !");
See Also

Reference