public class SpreadsheetEditOptions extends Object implements IEditOptions
Allows to specify custom options for editing documents of all supportable Spreadsheet (Excel-compatible) formats
| Constructor and Description |
|---|
SpreadsheetEditOptions() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
getExcludeHiddenWorksheets()
Allows to exclude hidden worksheets in the input Spreadsheet document, so
they will be totally ignored.
|
boolean |
getExportBogusRowData()
When enabled, the HTML table in produced HTML document contains an empty bottom hidden row with
zero height and empty cells, where only width is specified.
|
boolean |
getMergeEmptyAdjacentCells()
When enabled, the empty adjacent horizontal cells from the input Spreadsheet document will be
represented in editable HTML document as merged into a single cell with corresponding
|
int |
getWorksheetIndex()
Allows to specify the 0-based index of the worksheet (tab) of the input
Spreadsheet document, which should be converted to the HTML (see
remarks).
|
void |
setExcludeHiddenWorksheets(boolean value)
Allows to exclude hidden worksheets in the input Spreadsheet document, so
they will be totally ignored.
|
void |
setExportBogusRowData(boolean value) |
void |
setMergeEmptyAdjacentCells(boolean value) |
void |
setWorksheetIndex(int value)
Allows to specify the 0-based index of the worksheet (tab) of the input
Spreadsheet document, which should be converted to the HTML (see
remarks).
|
public final boolean getExcludeHiddenWorksheets()
Allows to exclude hidden worksheets in the input Spreadsheet document, so they will be totally ignored. Default is false - hidden worksheets are available and processed as normal.
WorksheetIndex(getWorksheetIndex()/setWorksheetIndex(int))'
property.
public boolean getExportBogusRowData()
When enabled, the HTML table in produced HTML document contains an empty bottom hidden row with
zero height and empty cells, where only width is specified. This row with empty cells contains
exact width values for each column and improves backward conversion from HTML to Spreadsheet. By
default is enabled (
public boolean getMergeEmptyAdjacentCells()
When enabled, the empty adjacent horizontal cells from the input Spreadsheet document will be
represented in editable HTML document as merged into a single cell with corresponding
By default the GroupDocs.Editor converts a table from input Spreadsheet document to the output
HTML document by preserving each cell. However, the Spreadsheet documents may be sparse — they
may contain huge amount of "empty areas", where a lot of cells are empty. This option, when
enabled, merges such empty cells into one with
public final int getWorksheetIndex()
Allows to specify the 0-based index of the worksheet (tab) of the input Spreadsheet document, which should be converted to the HTML (see remarks).
public final void setExcludeHiddenWorksheets(boolean value)
Allows to exclude hidden worksheets in the input Spreadsheet document, so they will be totally ignored. Default is false - hidden worksheets are available and processed as normal.
WorksheetIndex(getWorksheetIndex()/setWorksheetIndex(int))'
property.
public void setExportBogusRowData(boolean value)
public void setMergeEmptyAdjacentCells(boolean value)
public final void setWorksheetIndex(int value)
Allows to specify the 0-based index of the worksheet (tab) of the input Spreadsheet document, which should be converted to the HTML (see remarks).
Copyright © 2026. All rights reserved.