Interface IWorkbookExporter
Coordinates streaming creation of worksheets, styles, and sheet metadata into an output workbook package.
Inherited Members
Namespace: Telerik.Documents.SpreadsheetStreaming
Assembly: Telerik.Documents.SpreadsheetStreaming.dll
Syntax
public interface IWorkbookExporter : IDisposable
Properties
CellStyles
Gets the mutable collection of reusable cell styles shared across exported worksheets.
Declaration
SpreadCellStyleCollection CellStyles { get; }
Property Value
|
SpreadCellStyleCollection
The cell style collection. |
Methods
CreateWorksheetExporter(String)
Create and return a new worksheet exporter with the specified sheet name.
Declaration
IWorksheetExporter CreateWorksheetExporter(string name)
Parameters
|
System.String
name
The name of the worksheet. |
Returns
|
IWorksheetExporter
The worksheet exporter. |
GetSheetInfos()
Returns lightweight metadata for all sheets created so far (name, order) without reopening them.
Declaration
IEnumerable<SheetInfo> GetSheetInfos()
Returns
|
System.Collections.Generic.IEnumerable<SheetInfo>
|