Click or drag to resize
Pdf Library for .NET

PdfTextElement Constructor (Single, Single, Single, Single, String, PdfFont, PdfColor)

Creates a text object that can be added to a pdf document.

Namespace:  SelectPdf
Assembly:  Select.Pdf (in Select.Pdf.dll) Version: 20.2
Syntax
public PdfTextElement(
	float x,
	float y,
	float width,
	float height,
	string text,
	PdfFont font,
	PdfColor color
)

Parameters

x
Type: System.Single
The start X coordinate where the text will be rendered.
y
Type: System.Single
The start Y coordinate where the text will be rendered.
width
Type: System.Single
The width of the destination rectangle.
height
Type: System.Single
The height of the destination rectangle.
text
Type: System.String
The text to be rendered.
font
Type: SelectPdf.PdfFont
The text font. To support Unicode texts, the true type fonts must be embedded in the pdf document when they are added.
color
Type: SelectPdf.PdfColor
The text color.
Remarks
The text element that will be rendered at the specified (x,y) position using the specified font. The width and height of the text on the destination page are also specified.
See Also