Class SjsSaveOptions
Option class for saving SpreadJS file.
-
Constructor Summary
Constructors
-
Method Summary
boolean
Gets whether to ignore data out of the RowCount and ColumnCount when exporting to sjs.
boolean
Get whether to include the automatically merged cells.
final boolean
Gets whether to include the binding source when saving the file.
final boolean
Get whether any empty cells outside the used data range can be included when saving the file.
final boolean
Get whether the formula can be included when saving the file.
final boolean
Get whether the style can be included when saving files.
final boolean
Get whether the unused custom name can be included when saving the file.
void
Sets whether to ignore data out of the RowCount and ColumnCount when exporting to sjs.
void
Set whether to include the automatically merged cells.
final void
Sets whether to include the binding source when saving the file.
final void
Set whether any empty cells outside the used data range can be included when saving the file.
final void
Set whether the formula can be included when saving the file.
final void
Set whether the style can be included when saving files.
final void
Set whether the unused custom name can be included when saving the file.
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
SjsSaveOptions
public SjsSaveOptions()
Constructor.
-
Method Details
-
getIncludeStyles
public final boolean getIncludeStyles()
Get whether the style can be included when saving files. By default, the value is true.
-
setIncludeStyles
public final void setIncludeStyles(boolean value)
Set whether the style can be included when saving files.
-
-
-
getIncludeUnusedNames
public final boolean getIncludeUnusedNames()
Get whether the unused custom name can be included when saving the file. By default, the value is true.
-
setIncludeUnusedNames
public final void setIncludeUnusedNames(boolean value)
Set whether the unused custom name can be included when saving the file.
-
getIncludeEmptyRegionCells
public final boolean getIncludeEmptyRegionCells()
Get whether any empty cells outside the used data range can be included when saving the file. By default, the value is true.
-
setIncludeEmptyRegionCells
public final void setIncludeEmptyRegionCells(boolean value)
Set whether any empty cells outside the used data range can be included when saving the file. By default, the value is true.
-
getIgnoreRangeOutOfRowColumnCount
public boolean getIgnoreRangeOutOfRowColumnCount()
Gets whether to ignore data out of the RowCount and ColumnCount when exporting to sjs. Default value is false.
-
setIgnoreRangeOutOfRowColumnCount
public void setIgnoreRangeOutOfRowColumnCount(boolean value)
Sets whether to ignore data out of the RowCount and ColumnCount when exporting to sjs.
-
getIncludeBindingSource
public final boolean getIncludeBindingSource()
Gets whether to include the binding source when saving the file. Default value is true.
-
setIncludeBindingSource
public final void setIncludeBindingSource(boolean value)
Sets whether to include the binding source when saving the file.
-
getIncludeAutoMergedCells
public boolean getIncludeAutoMergedCells()
Get whether to include the automatically merged cells. The default value is false.
-
setIncludeAutoMergedCells
public void setIncludeAutoMergedCells(boolean value)
Set whether to include the automatically merged cells. The default value is false.