public class XlsxOpenOptions extends OpenOptionsBase
| Constructor and Description |
|---|
XlsxOpenOptions()
Constructor
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
getDigitalSignatureOnly()
Indicates whether to open the workbook in digital signature only mode.
|
boolean |
getDoNotAutofitAfterOpened()
Don't autofit the row height after loading the file.
|
boolean |
getDoNotRecalculateAfterOpened()
Don't recalculate when getting formula value after loading the file.
|
java.util.EnumSet<ImportFlags> |
getImportFlags()
Flags on loading data.
|
java.lang.String |
getPassword()
The password for the xlsx file.
|
void |
setDigitalSignatureOnly(boolean value)
Indicates whether to open the workbook in digital signature only mode.
|
void |
setDoNotAutofitAfterOpened(boolean value)
Don't autofit the row height after loading the file.
|
void |
setDoNotRecalculateAfterOpened(boolean value)
Don't recalculate when getting formula value after loading the file.
|
void |
setImportFlags(java.util.EnumSet<ImportFlags> value)
Flags on loading data.
|
void |
setPassword(java.lang.String value)
The password for the xlsx file.
|
getFileFormatpublic final java.lang.String getPassword()
public final void setPassword(java.lang.String value)
public final java.util.EnumSet<ImportFlags> getImportFlags()
public final void setImportFlags(java.util.EnumSet<ImportFlags> value)
public final boolean getDoNotRecalculateAfterOpened()
public final void setDoNotRecalculateAfterOpened(boolean value)
public final boolean getDigitalSignatureOnly()
In the digital signature only mode, existing signatures will be preserved
unless you called ISignature.Delete. But you can only sign
existing signature lines, add invisible signatures, remove digital signature
of signed signature lines, or remove invisible signatures in this mode. Other
changes will be discarded.
After modifying digital signatures, you need to save the workbook to commit changes.
True to open workbook in digital signature only mode.
Otherwise, use normal mode. The default value is False.
public final void setDigitalSignatureOnly(boolean value)
In the digital signature only mode, existing signatures will be preserved
unless you called ISignature.Delete. But you can only sign
existing signature lines, add invisible signatures, remove digital signature
of signed signature lines, or remove invisible signatures in this mode. Other
changes will be discarded.
After modifying digital signatures, you need to save the workbook to commit changes.
True to open workbook in digital signature only mode.
Otherwise, use normal mode. The default value is False.
public final boolean getDoNotAutofitAfterOpened()
public final void setDoNotAutofitAfterOpened(boolean value)