Interface IWorksheetViewExporter
Defines members used to export the worksheet view state.
Inherited Members
Namespace: Telerik.Documents.SpreadsheetStreaming
Assembly: Telerik.Documents.SpreadsheetStreaming.dll
Syntax
public interface IWorksheetViewExporter : IDisposable
Methods
AddSelectionRange(Int32, Int32, Int32, Int32)
Adds a range to the selection.
Declaration
void AddSelectionRange(int fromRowIndex, int fromColumnIndex, int toRowIndex, int toColumnIndex)
Parameters
System. The row index of the top left cell of the range. |
System. The column index of the top left cell of the range. |
System. The row index of the bottom right cell of the range. |
System. The column index of the bottom right cell of the range. |
SetActiveSelectionCell(Int32, Int32)
Sets the active cell of the selection.
Declaration
void SetActiveSelectionCell(int rowIndex, int columnIndex)
Parameters
System. The row index of the active cell. |
System. The column index of the active cell. |
SetFirstVisibleCell(Int32, Int32)
Sets the first visible cell of the viewport.
Declaration
void SetFirstVisibleCell(int rowIndex, int columnIndex)
Parameters
System. The row index. |
System. The column index. |
SetFreezePanes(Int32, Int32)
Sets the freeze panes.
Declaration
void SetFreezePanes(int rowsCount, int columnsCount)
Parameters
System. The number of frozen rows. |
System. The number of frozen column. |
SetFreezePanes(Int32, Int32, Int32, Int32)
Sets the freeze panes.
Declaration
void SetFreezePanes(int rowsCount, int columnsCount, int scrollablePaneFirstVisibleCellRowIndex, int scrollablePaneFirstVisibleCellColumnIndex)
Parameters
System. The number of frozen rows. |
System. The number of frozen column. |
System. The scrollable pane first visible cell row index. |
System. The scrollable pane first visible cell column index. |
SetScaleFactor(Double)
Sets the scale factor.
Declaration
void SetScaleFactor(double percent)
Parameters
System. The percentage that the viewport will be scaled to. |
SetShouldShowGridLines(Boolean)
Sets a value indicating whether gridlines should be visible.
Declaration
void SetShouldShowGridLines(bool value)
Parameters
System. True for visible gridlines, otherwise False. |
SetShouldShowRowColumnHeaders(Boolean)
Sets a value indicating whether row and column headers should be visible.
Declaration
void SetShouldShowRowColumnHeaders(bool value)
Parameters
System. True for visible row and column headers, otherwise False. |