Interface IWorksheetImporter
Provides streamed access to worksheet structure (rows, columns) and name during workbook import.
Inherited Members
Namespace: Telerik.Documents.SpreadsheetStreaming
Assembly: Telerik.Documents.SpreadsheetStreaming.dll
Syntax
public interface IWorksheetImporter : IDisposable
Properties
Columns
Gets a sequence of column descriptors exposing width, grouping, and visibility.
Declaration
IEnumerable<IColumnImporter> Columns { get; }
Property Value
|
System.Collections.Generic.IEnumerable<IColumnImporter>
The columns. |
Name
Gets the worksheet's name as stored in the workbook.
Declaration
string Name { get; }
Property Value
|
System.String
The name. |
Rows
Gets a streamed sequence of row importers for reading cell sets row by row.
Declaration
IEnumerable<IRowImporter> Rows { get; }
Property Value
|
System.Collections.Generic.IEnumerable<IRowImporter>
The rows. |