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,
	RectangleF layoutRectangle,
	PdfTextLayout format
)
Public Function Draw ( 
	page As PdfPageBase,
	layoutRectangle As RectangleF,
	format As PdfTextLayout
) As PdfLayoutResult
public:
PdfLayoutResult^ Draw(
	PdfPageBase^ page, 
	RectangleF layoutRectangle, 
	PdfTextLayout^ format
)
member Draw : 
        page : PdfPageBase * 
        layoutRectangle : RectangleF * 
        format : PdfTextLayout -> PdfLayoutResult 

Parameters

page
PdfPageBase
Current page where the element should be drawn.
layoutRectangle
RectangleF
RectangleF structure that specifies the bounds of the element.
format
PdfTextLayout
Layout format.

Return Value

PdfLayoutResult
Layout result.

See Also