Delegate for handling export of specified excel row.

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

Syntax

C#
public delegate XmlNode RowToHtmlDelegate(
	HtmlExporterOptions options,
	ExcelRow row,
	CellRange range,
	int htmlRowIndex
)
Visual Basic
Public Delegate Function RowToHtmlDelegate ( _
	options As HtmlExporterOptions, _
	row As ExcelRow, _
	range As CellRange, _
	htmlRowIndex As Integer _
) As XmlNode

Parameters

options
Type: GemBox.Spreadsheet..::..HtmlExporterOptions
Options that describe exporting process.
row
Type: GemBox.Spreadsheet..::..ExcelRow
Current excel row.
range
Type: GemBox.Spreadsheet..::..CellRange
Cell range that is been exported.
htmlRowIndex
Type: System..::..Int32
Row index in HTML table

See Also