Contains the options related to loading a workbook from a file or stream.

constructor

public WorkbookLoadOptions(IPackageFactory packageFactory = null)

Returns WorkbookLoadOptions

constructor

public WorkbookLoadOptions(SecureString openPasswordSecure, IPackageFactory packageFactory = null, bool verifyExcel2007Xml = true)

Returns WorkbookLoadOptions

constructor

public WorkbookLoadOptions(string openPassword, IPackageFactory packageFactory = null)

Returns WorkbookLoadOptions

Inherited from: WorkbookOptionsBase

Gets or sets an IPackageFactory which can be used to create or open an IPackage in a stream.

public IPackageFactory PackageFactory { get; set; }

Returns or sets a boolean indicating whether the Workbook will automatically call its methods before the Load method returns.

public bool AutoResumeCalculations { get; set; }

Returns or sets the value for the property.

public CultureInfo Culture { get; set; }

Returns or sets a boolean indicating whether duplicate formulas parsed during the load will be optimized for faster loading of the workbook.

public bool IsDuplicateFormulaParsingOptimized { get; set; }

Gets or sets the password used to decrypt the document if it is encrypted.

public string OpenPassword { get; set; }

Gets or sets the password used to decrypt the document if it is encrypted.

public SecureString OpenPasswordSecure { get; set; }

Gets or sets the Dpi to use when calculating row and column sizes for the workbook. If empty, the system Dpi will be used.

public Size ScreenDpi { get; set; }

Returns a list of user defined function assemblies that should be registered before the workbook is loaded.

public IList<Assembly> UserDefinedFunctionLibraries { get; }

Returns a list of user defined functions that should be registered before the workbook is loaded.

public IList<ExcelCalcFunction> UserDefinedFunctions { get; }