Delegate for handling cell export.

Namespace: GemBox.Spreadsheet
Assembly: GemBox.Spreadsheet (in GemBox.Spreadsheet.dll) Version: 35.0.30.1025

Syntax

C#
public delegate XmlNode CellToHtmlDelegate(
	HtmlExporterOptions options,
	ExcelCell cell,
	HtmlExportPosition position
)
Visual Basic
Public Delegate Function CellToHtmlDelegate ( _
	options As HtmlExporterOptions, _
	cell As ExcelCell, _
	position As HtmlExportPosition _
) As XmlNode

Parameters

options
Type: GemBox.Spreadsheet..::..HtmlExporterOptions
Options that describe exporting process.
cell
Type: GemBox.Spreadsheet..::..ExcelCell
Excel cell.
position
Type: GemBox.Spreadsheet..::..HtmlExportPosition
Current position of the exporting process. It can be null.

See Also