PDF .NET Library Documentation - PDF Technologies, Inc.
This procedure draws a text line "Textstr" using the current font starting at location (x, y) at "orientation" (in degrees) at vertical and horizontal alignments.

Namespace:  PDFTech
Assembly:  PDFTechLib (in PDFTechLib.dll) Version: 1.0.0.0 (1.7.9.0)

Syntax

C#
public void TextOut(
	double X,
	double Y,
	double Orientation,
	string TextStr,
	HorJust HorizontalAl,
	VertJust VerticalAl
)
Visual Basic (Declaration)
Public Sub TextOut ( _
	X As Double, _
	Y As Double, _
	Orientation As Double, _
	TextStr As String, _
	HorizontalAl As HorJust, _
	VerticalAl As VertJust _
)
Visual C++
public:
void TextOut(
	double X, 
	double Y, 
	double Orientation, 
	String^ TextStr, 
	HorJust HorizontalAl, 
	VertJust VerticalAl
)

Parameters

X
Type: System..::.Double
Location x value
Y
Type: System..::.Double
Location y value
Orientation
Type: System..::.Double
Text orientation value
TextStr
Type: System..::.String
Text to be written
HorizontalAl
Type: PDFTech..::.HorJust
Horizontal alignment
VerticalAl
Type: PDFTech..::.VertJust
Vertical alignment

See Also