TextObjectAppendText Method

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Appends the 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 AppendText(
	string text
)

Parameters

text
Type: SystemString
The text.
Examples

C#
FixedDocument document = new FixedDocument();
TextObject text = new TextObject("Helvetica", 14);
text.SetTextRenderingMode(RenderingMode.FillText);

text.AppendText("Hello World!");

Page page = new Page(new PageBoundary(Boundaries.A4));
document.Pages.Add(page);
document.Pages[0].Content.AppendText(text);
See Also

Reference