New to Telerik UI for WinFormsStart a free 30-day trial

IRowExporter

Interface

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

Definition

Namespace:Telerik.Documents.SpreadsheetStreaming

Assembly:Telerik.Documents.SpreadsheetStreaming.dll

Syntax:

C#
public interface IRowExporter : IDisposable

Inherited Members IDisposable.Dispose()

Methods

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

C#
ICellExporter CreateCellExporter()
Returns:

ICellExporter

The cell exporter.

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

C#
void SetHeightInPixels(double value)
Parameters:valuedouble

The row height value in pixels.

Define a custom row height expressed in typographic points.

C#
void SetHeightInPoints(double value)
Parameters:valuedouble

The row height value in points.

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

C#
void SetHidden(bool value)
Parameters:valuebool

True for hidden; otherwise false.

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

C#
void SetOutlineLevel(int value)
Parameters:valueint

The row outline level value.

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

C#
void SkipCells(int count)
Parameters:countint

The count of the cells to skip.