Interface IRowExporter
Streams row-level structure, height, visibility, and cell data to the output worksheet.
Inherited Members
Namespace: Telerik.Documents.SpreadsheetStreaming
Assembly: Telerik.Documents.SpreadsheetStreaming.dll
Syntax
public interface IRowExporter : IDisposable
Methods
CreateCellExporter()
Create a forward-only cell exporter positioned at the next cell in the row.
Declaration
ICellExporter CreateCellExporter()
Returns
|
ICellExporter
The cell exporter. |
SetHeightInPixels(Double)
Define a custom row height expressed in device-independent pixels.
Declaration
void SetHeightInPixels(double value)
Parameters
|
System.Double
value
The row height value in pixels. |
SetHeightInPoints(Double)
Define a custom row height expressed in typographic points.
Declaration
void SetHeightInPoints(double value)
Parameters
|
System.Double
value
The row height value in points. |
SetHidden(Boolean)
Hide or show the row while retaining its data and formulas.
Declaration
void SetHidden(bool value)
Parameters
|
System.Boolean
value
True for hidden; otherwise false. |
SetOutlineLevel(Int32)
Set the grouping outline depth for the row (0 for none).
Declaration
void SetOutlineLevel(int value)
Parameters
|
System.Int32
value
The row outline level value. |
SkipCells(Int32)
Advance the internal column position by the specified number of cells without writing content.
Declaration
void SkipCells(int count)
Parameters
|
System.Int32
count
The count of the cells to skip. |