Click or drag to resize

DocumentRendererLLGenerate Method

This method represents the Low-Level implementation of code used to generate PDF content for a particular page. A complete implementation of this method should call the GeneratePdf method of the page's DrawlingList property, passing in the given PdfPageRenderer object. The default implementation does nothing.

Namespace:  Atalasoft.PdfDoc.Generating.Rendering
Assembly:  Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
protected virtual void LLGenerate(
	PdfGeneratedDocument document,
	BasePage page,
	PdfPageRenderer renderer
)

Parameters

document
Type: Atalasoft.PdfDoc.GeneratingPdfGeneratedDocument
The document being rendered.
page
Type: Atalasoft.PdfDocBasePage
The page being rendered.
renderer
Type: Atalasoft.PdfDoc.Generating.RenderingPdfPageRenderer
The PdfPageRenderer object returned by MakeWriter.
See Also