Draws the text on the page.

Namespace: Spire.Pdf.Graphics
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 7.9.2.0 (7.9.2.1020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public PdfTextLayoutResult Draw(
	PdfNewPage page,
	PointF location,
	PdfTextLayout format
)
Public Function Draw ( 
	page As PdfNewPage,
	location As PointF,
	format As PdfTextLayout
) As PdfTextLayoutResult
public:
PdfTextLayoutResult^ Draw(
	PdfNewPage^ page, 
	PointF location, 
	PdfTextLayout^ format
)
member Draw : 
        page : PdfNewPage * 
        location : PointF * 
        format : PdfTextLayout -> PdfTextLayoutResult 

Parameters

page
PdfNewPage
Current page where the text should be drawn.
location
PointF
Start location on the page.
format
PdfTextLayout
Lay outing format.

Return Value

PdfTextLayoutResult
Lay outing result.

See Also