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
)
Public Function Draw ( 
	page As PdfPageBase,
	x As Single,
	y As Single
) As PdfLayoutResult
public:
PdfLayoutResult^ Draw(
	PdfPageBase^ page, 
	float x, 
	float y
)
member Draw : 
        page : PdfPageBase * 
        x : float32 * 
        y : float32 -> 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.

Return Value

PdfLayoutResult
Lay outing result.

See Also