Interface ICellExporter
Defines members used to export a cell.
Inherited Members
System.IDisposable.Dispose()
Namespace: Telerik.Documents.SpreadsheetStreaming
Assembly: Telerik.Documents.SpreadsheetStreaming.dll
Syntax
public interface ICellExporter : IDisposable
Methods
SetFormat(SpreadCellFormat)
Sets the cell format.
Declaration
void SetFormat(SpreadCellFormat cellFormat)
Parameters
SpreadCellFormat
cellFormat
The cell format. |
SetFormula(String)
Sets formula value.
Declaration
void SetFormula(string value)
Parameters
System.String
value
The formula value. |
SetValue(Boolean)
Sets a boolean cell value.
Declaration
void SetValue(bool value)
Parameters
System.Boolean
value
The boolean value. |
SetValue(DateTime)
Sets DateTime as cell value.
Declaration
void SetValue(DateTime value)
Parameters
System.DateTime
value
The DateTime value. |
SetValue(Double)
Sets double as cell value.
Declaration
void SetValue(double value)
Parameters
System.Double
value
The double value. |
SetValue(String)
Sets string as cell value.
Declaration
void SetValue(string value)
Parameters
System.String
value
The string value. |