InterfaceICellExporter
Streams cell content and formatting to an output spreadsheet document in a forward-only, low-memory fashion.
Definition
Namespace:Telerik.Documents.SpreadsheetStreaming
Assembly:Telerik.Documents.SpreadsheetStreaming.dll
Syntax:
public interface ICellExporter : IDisposable
Inherited Members
Methods
SetFormat(SpreadCellFormat)
Apply the provided cell format (style, number format, alignment, borders, etc.) to the current cell.
Declaration
void SetFormat(SpreadCellFormat cellFormat)
Parameters
cellFormat
The cell format.
SetFormula(string)
Write a formula expression and mark the cell as formula typed.
Declaration
void SetFormula(string value)
Parameters
value
The formula value.
SetValue(DateTime)
Write a DateTime value converted to the spreadsheet serial number representation.
Declaration
void SetValue(DateTime value)
Parameters
value
The DateTime value.
SetValue(bool)
Write a boolean value (TRUE/FALSE) to the current cell.
SetValue(double)
Write a numeric (double) value to the current cell for number/date formatting.
SetValue(string)
Write a string value to the current cell.