TextObjectMoveToNextLine Method (Double, Double)

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 (tx, ty). tx and ty shall denote numbers expressed in unscaled text space units.

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(
	double tx,
	double ty
)

Parameters

tx
Type: SystemDouble
The tx.
ty
Type: SystemDouble
The ty.
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.AppendText("A B C");
// to obtain the 3D effect we add text above the same text with minimal offset
text.MoveToNextLine(-1, 1); 
text.AppendText("A B C");
See Also

Reference