类 XlsxSaveOptions

java.lang.Object
com.grapecity.documents.excel.SaveOptionsBase
com.grapecity.documents.excel.XlsxSaveOptions
直接已知子类:
XlsmSaveOptions, XltxSaveOptions

public class XlsxSaveOptions extends SaveOptionsBase
Option class for saving xlsx file.
  • 构造器详细资料

    • XlsxSaveOptions

      public XlsxSaveOptions()
      Constructor.
  • 方法详细资料

    • getPassword

      public final String getPassword()
      The password for the xlsx file.
    • setPassword

      public final void setPassword(String value)
      The password for the xlsx file.
    • getIsCompactMode

      public final boolean getIsCompactMode()
      A bool indicating whether to save workbook in compact mode, the default value is false.
    • setIsCompactMode

      public final void setIsCompactMode(boolean value)
      A bool indicating whether to save workbook in compact mode, the default value is false.
    • getIgnoreFormulas

      public final boolean getIgnoreFormulas()
      Indicates whether treat formula cells as value cells.
    • setIgnoreFormulas

      public final void setIgnoreFormulas(boolean value)
      Indicates whether treat formula cells as value cells.
    • getExcludeUnusedStyles

      public final boolean getExcludeUnusedStyles()
      Indicates whether to exclude user-defined but never used Cell styles. Default is false.
    • setExcludeUnusedStyles

      public final void setExcludeUnusedStyles(boolean value)
      Indicates whether to exclude user-defined but never used Cell styles. Default is false.
    • getExcludeUnusedNames

      public final boolean getExcludeUnusedNames()
      Indicates whether to exclude user-defined but never used Define name. Default is false.
    • setExcludeUnusedNames

      public final void setExcludeUnusedNames(boolean value)
      Indicates whether to exclude user-defined but never used Define name. Default is false.
    • getExcludeEmptyRegionCells

      public final boolean getExcludeEmptyRegionCells()
      Indicates whether to exclude any empty cells(cells with no data or only style) outside the used data range. Default is false.
    • setExcludeEmptyRegionCells

      public final void setExcludeEmptyRegionCells(boolean value)
      Indicates whether to exclude any empty cells(cells with no data or only style) outside the used data range. Default is false.
    • toString

      public String toString()
      覆盖:
      toString 在类中 Object