Interface
IWorksheetExporter

Streams rows, columns, merged ranges, and view/page settings for a single worksheet.

Definition

Namespace:Telerik.Documents.SpreadsheetStreaming

Assembly:Telerik.Documents.SpreadsheetStreaming.dll

Syntax:

cs-api-definition
public interface IWorksheetExporter : IDisposable

Inherited Members IDisposable.Dispose()

Methods

CreateColumnExporter()

Create a column exporter for defining column widths and grouping before writing rows.

Declaration

cs-api-definition
IColumnExporter CreateColumnExporter()

Returns

IColumnExporter

The column exporter.

CreatePageSetupExporter()

Create a page setup exporter to configure print layout settings for the sheet.

Declaration

cs-api-definition
IPageSetupExporter CreatePageSetupExporter()

Returns

IPageSetupExporter

The page setup exporter.

CreateRowExporter()

Create a row exporter positioned at the next row for writing cells.

Declaration

cs-api-definition
IRowExporter CreateRowExporter()

Returns

IRowExporter

The row exporter.

CreateWorksheetViewExporter()

Create a view exporter to configure viewport state (freeze panes, zoom, selection, visibility).

Declaration

cs-api-definition
IWorksheetViewExporter CreateWorksheetViewExporter()

Returns

IWorksheetViewExporter

The worksheet view exporter.

MergeCells(int, int, int, int)

Merge a rectangular region of cells defined by its start and end row/column indices.

Declaration

cs-api-definition
void MergeCells(int fromRowIndex, int fromColumnIndex, int toRowIndex, int toColumnIndex)

Parameters

fromRowIndex

int

The start row index of the area.

fromColumnIndex

int

The start column index of the area.

toRowIndex

int

The end row index of the area.

toColumnIndex

int

The end column index of the area.

SkipColumns(int)

Advance the internal column position by a given number without writing cells.

Declaration

cs-api-definition
void SkipColumns(int count)

Parameters

count

int

The count of the columns to skip.

SkipRows(int)

Advance the internal row index by the specified number without emitting row elements.

Declaration

cs-api-definition
void SkipRows(int count)

Parameters

count

int

The count of the rows to skip.