ConvertXmlNodeToPdfDelegate Delegate
Defines the delegate for fine-tuning of HTML to PDF conversion.

Namespace: MailBee.Pdf
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public delegate IElement ConvertXmlNodeToPdfDelegate(
	XmlNode xmlNode,
	IElement pdfChunk
)

Parameters

xmlNode
Type: System.XmlXmlNode
An XmlNode object for the current document node.
pdfChunk
Type: IElement
An iTextSharp.text.IElement object for the current document node, processed by Html to Pdf converter

Return Value

Type: IElement
An iTextSharp.text.IElement object with processed part of .pdf document
Remarks

You can use it if you want to add processing of CSS or change default behaviour of the converter.

To set this delegate, use OnConvertXmlNodeToPdf property.

See Also