Interface IColumnExporter
Streams column-level layout and visibility settings to the output worksheet.
Inherited Members
Namespace: Telerik.Documents.SpreadsheetStreaming
Assembly: Telerik.Documents.SpreadsheetStreaming.dll
Syntax
public interface IColumnExporter : IDisposable
Methods
SetHidden(Boolean)
Hide or show the column without removing its data from the sheet.
Declaration
void SetHidden(bool value)
Parameters
|
System.Boolean
value
True for hidden; otherwise false. |
SetOutlineLevel(Int32)
Define the outline level used for grouping operations (0 for none, increasing for nested groups).
Declaration
void SetOutlineLevel(int value)
Parameters
|
System.Int32
value
The outline level value. |
SetWidthInCharacters(Double)
Set the column width measured as the number of zero (0) characters that fit (Excel character-based width).
Declaration
void SetWidthInCharacters(double count)
Parameters
|
System.Double
count
The count of the characters. |
SetWidthInPixels(Double)
Set the column width in device-independent pixels for precise layout control.
Declaration
void SetWidthInPixels(double value)
Parameters
|
System.Double
value
The width value in pixels. |