Interface
ICellExporter

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:

cs-api-definition
public interface ICellExporter : IDisposable

Inherited Members IDisposable.Dispose()

Methods

SetFormat(SpreadCellFormat)

Apply the provided cell format (style, number format, alignment, borders, etc.) to the current cell.

Declaration

cs-api-definition
void SetFormat(SpreadCellFormat cellFormat)

Parameters

cellFormat

SpreadCellFormat

The cell format.

SetFormula(string)

Write a formula expression and mark the cell as formula typed.

Declaration

cs-api-definition
void SetFormula(string value)

Parameters

value

string

The formula value.

SetValue(DateTime)

Write a DateTime value converted to the spreadsheet serial number representation.

Declaration

cs-api-definition
void SetValue(DateTime value)

Parameters

value

DateTime

The DateTime value.

SetValue(bool)

Write a boolean value (TRUE/FALSE) to the current cell.

Declaration

cs-api-definition
void SetValue(bool value)

Parameters

value

bool

The boolean value.

SetValue(double)

Write a numeric (double) value to the current cell for number/date formatting.

Declaration

cs-api-definition
void SetValue(double value)

Parameters

value

double

The double value.

SetValue(string)

Write a string value to the current cell.

Declaration

cs-api-definition
void SetValue(string value)

Parameters

value

string

The string value.