PdfTableStart Delegate

PDF File Writer

PdfTableStart Delegate

PDF table start event handler delegate

Namespace:  PdfFileWriter
Assembly:  PdfFileWriter (in PdfFileWriter.dll) Version: 1.1.24.0 (1.1.24.0)
Syntax
C#
public delegate void PdfTableStart(
	PdfTable Table,
	double TableStartPos
)

Parameters

Table
Type: PdfFileWriterPdfTable
Parent object.
TableStartPos
Type: SystemDouble
Table top's position on the page.
Remarks
The purpose of the table start event handler is to allow custom drawing on the page before the header and the first row are drawn. For example, drawing a title above the table.
See Also