[]
Option class for opening xlsx file.
public class XlsxOpenOptions : OpenOptionsBase
Constructor.
public XlsxOpenOptions()
Indicates whether to open the workbook in digital signature only mode.
In the digital signature only mode, existing signatures will be preserved unless you called 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 bool DigitalSignatureOnly { get; set; }
Don't autofit the row height after loading the file. Default is false.
public bool DoNotAutoFitAfterOpened { get; set; }
Don't recalculate when getting formula value after loading the file. Default is false.
public bool DoNotRecalculateAfterOpened { get; set; }
Flags on loading data. Default is ImportFlags.NoFlag.
public ImportFlags ImportFlags { get; set; }
The password for the xlsx file.
public string Password { get; set; }