Draws an list on the Graphics.

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

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public override void Draw(
	PdfCanvas graphics,
	float x,
	float y
)
Public Overrides Sub Draw ( 
	graphics As PdfCanvas,
	x As Single,
	y As Single
)
public:
virtual void Draw(
	PdfCanvas^ graphics, 
	float x, 
	float y
) override
abstract Draw : 
        graphics : PdfCanvas * 
        x : float32 * 
        y : float32 -> unit 
override Draw : 
        graphics : PdfCanvas * 
        x : float32 * 
        y : float32 -> unit 

Parameters

graphics
PdfCanvas
Graphics context where the list should be printed.
x
Single
X co-ordinate of the list.
y
Single
Y co-ordinate of the list.

See Also