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