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

IRowImporter

Interface

Exposes row position, layout, visibility, and streamed cell sequence while importing a worksheet.

Definition

Namespace:Telerik.Documents.SpreadsheetStreaming

Assembly:Telerik.Documents.SpreadsheetStreaming.dll

Syntax:

C#
public interface IRowImporter

Properties

Cells

IEnumerable<ICellImporter>

Enumerates the streamed cells contained in this row.

C#
IEnumerable<ICellImporter> Cells { get; }
Property Value:

The cells.

Gets the row height in device-independent pixels when custom height is defined.

C#
double HeightInPixels { get; }
Property Value:

The height in pixels.

Gets the row height in points when custom height is defined.

C#
double HeightInPoints { get; }
Property Value:

The height in points.

Gets a value indicating whether a custom height has been explicitly set.

C#
bool IsCustomHeight { get; }
Property Value:

A value indicating if the height is custom.

Gets a value indicating whether the row is hidden from view.

C#
bool IsHidden { get; }
Property Value:

A value indicating if the row is hidden.

Gets the grouping outline depth (0 for none) applied to the row.

C#
int OutlineLevel { get; }
Property Value:

The outline level.

Gets the zero-based index of the row within the worksheet.

C#
int RowIndex { get; }
Property Value:

The index of the row.