Interface
IRowExporter

Streams row-level structure, height, visibility, and cell data to the output worksheet.

Definition

Namespace:Telerik.Documents.SpreadsheetStreaming

Assembly:Telerik.Documents.SpreadsheetStreaming.dll

Syntax:

cs-api-definition
public interface IRowExporter : IDisposable

Inherited Members IDisposable.Dispose()

Methods

CreateCellExporter()

Create a forward-only cell exporter positioned at the next cell in the row.

Declaration

cs-api-definition
ICellExporter CreateCellExporter()

Returns

ICellExporter

The cell exporter.

SetHeightInPixels(double)

Define a custom row height expressed in device-independent pixels.

Declaration

cs-api-definition
void SetHeightInPixels(double value)

Parameters

value

double

The row height value in pixels.

SetHeightInPoints(double)

Define a custom row height expressed in typographic points.

Declaration

cs-api-definition
void SetHeightInPoints(double value)

Parameters

value

double

The row height value in points.

SetHidden(bool)

Hide or show the row while retaining its data and formulas.

Declaration

cs-api-definition
void SetHidden(bool value)

Parameters

value

bool

True for hidden; otherwise false.

SetOutlineLevel(int)

Set the grouping outline depth for the row (0 for none).

Declaration

cs-api-definition
void SetOutlineLevel(int value)

Parameters

value

int

The row outline level value.

SkipCells(int)

Advance the internal column position by the specified number of cells without writing content.

Declaration

cs-api-definition
void SkipCells(int count)

Parameters

count

int

The count of the cells to skip.