Draws the element on the page.

Namespace: Spire.Pdf.Graphics
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 6.2.6.0 (6.2.6.2020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public PdfLayoutResult Draw(
	PdfPageBase page,
	float x,
	float y,
	PdfTextLayout format
)
Public Function Draw ( 
	page As PdfPageBase,
	x As Single,
	y As Single,
	format As PdfTextLayout
) As PdfLayoutResult
public:
PdfLayoutResult^ Draw(
	PdfPageBase^ page, 
	float x, 
	float y, 
	PdfTextLayout^ format
)
member Draw : 
        page : PdfPageBase * 
        x : float32 * 
        y : float32 * 
        format : PdfTextLayout -> PdfLayoutResult 

Parameters

page
PdfPageBase
Current page where the element should be drawn.
x
Single
X co-ordinate of the element on the page.
y
Single
Y co-ordinate of the element on the page.
format
PdfTextLayout
Layout format.

Return Value

PdfLayoutResult
Layout result.

See Also