InterfaceIWorksheetImporter
Interface
Provides streamed access to worksheet structure (rows, columns) and name during workbook import.
Definition
Namespace:Telerik.Documents.SpreadsheetStreaming
Assembly:Telerik.Documents.SpreadsheetStreaming.dll
Syntax:
cs-api-definition
public interface IWorksheetImporter : IDisposable
Inherited Members
Properties
AutoFilter
Gets the AutoFilter applied to the worksheet, or null if no AutoFilter is defined. This property can only be accessed after all rows have been consumed.
Declaration
cs-api-definition
SpreadAutoFilter AutoFilter { get; }
Property Value
The auto filter.
Columns
Gets a sequence of column descriptors exposing width, grouping, and visibility.
Declaration
cs-api-definition
IEnumerable<IColumnImporter> Columns { get; }
Property Value
The columns.
Name
Gets the worksheet's name as stored in the workbook.
Rows
Gets a streamed sequence of row importers for reading cell sets row by row.
Declaration
cs-api-definition
IEnumerable<IRowImporter> Rows { get; }
Property Value
The rows.