Draws an element on the Graphics.

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 void Draw(
	PdfCanvas graphics,
	PointF location
)
Public Sub Draw ( 
	graphics As PdfCanvas,
	location As PointF
)
public:
void Draw(
	PdfCanvas^ graphics, 
	PointF location
)
member Draw : 
        graphics : PdfCanvas * 
        location : PointF -> unit 

Parameters

graphics
PdfCanvas
Graphics context where the element should be printed.
location
PointF
Location of the element in the Graphics' co-ordinate system.

See Also