New to Telerik UI for WinFormsStart a free 30-day trial

Coordinates streaming creation of worksheets, styles, and sheet metadata into an output workbook package.

Definition

Namespace:Telerik.Documents.SpreadsheetStreaming

Assembly:Telerik.Documents.SpreadsheetStreaming.dll

Syntax:

C#
public interface IWorkbookExporter : IDisposable

Inherited Members IDisposable.Dispose()

Properties

Gets the mutable collection of reusable cell styles shared across exported worksheets.

C#
SpreadCellStyleCollection CellStyles { get; }
Property Value:

The cell style collection.

Methods

Create and return a new worksheet exporter with the specified sheet name.

C#
IWorksheetExporter CreateWorksheetExporter(string name)
Parameters:namestring

The name of the worksheet.

Returns:

IWorksheetExporter

The worksheet exporter.

Returns lightweight metadata for all sheets created so far (name, order) without reopening them.

C#
IEnumerable<SheetInfo> GetSheetInfos()
Returns:

IEnumerable<SheetInfo>