Interface IRowImporter
Exposes row position, layout, visibility, and streamed cell sequence while importing a worksheet.
Namespace: Telerik.Documents.SpreadsheetStreaming
Assembly: Telerik.Documents.SpreadsheetStreaming.dll
Syntax
public interface IRowImporter
Properties
Cells
Enumerates the streamed cells contained in this row.
Declaration
IEnumerable<ICellImporter> Cells { get; }
Property Value
|
System.Collections.Generic.IEnumerable<ICellImporter>
The cells. |
HeightInPixels
Gets the row height in device-independent pixels when custom height is defined.
Declaration
double HeightInPixels { get; }
Property Value
|
System.Double
The height in pixels. |
HeightInPoints
Gets the row height in points when custom height is defined.
Declaration
double HeightInPoints { get; }
Property Value
|
System.Double
The height in points. |
IsCustomHeight
Gets a value indicating whether a custom height has been explicitly set.
Declaration
bool IsCustomHeight { get; }
Property Value
|
System.Boolean
A value indicating if the height is custom. |
IsHidden
Gets a value indicating whether the row is hidden from view.
Declaration
bool IsHidden { get; }
Property Value
|
System.Boolean
A value indicating if the row is hidden. |
OutlineLevel
Gets the grouping outline depth (0 for none) applied to the row.
Declaration
int OutlineLevel { get; }
Property Value
|
System.Int32
The outline level. |
RowIndex
Gets the zero-based index of the row within the worksheet.
Declaration
int RowIndex { get; }
Property Value
|
System.Int32
The index of the row. |