LoadOptions

Overview

LoadOptions is a class in Aspose.Cells FOSS for .NET.

Specifies how a workbook should be loaded. var workbook = new Workbook(“input.xlsx”, new LoadOptions { StrictMode = false, TryRepairPackage = true, TryRepairXml = true, });

Properties: LoadFormat, PreserveUnsupportedParts, StrictMode, TryRepairPackage, TryRepairXml, WarningCallback.

Properties

NameTypeAccessDescription
LoadFormatLoadFormatRead/WriteGets or sets the load format.
StrictModeboolRead/WriteGets or sets the strict mode.
TryRepairPackageboolRead/WriteGets or sets the try repair package.
TryRepairXmlboolRead/WriteGets or sets the try repair xml.
PreserveUnsupportedPartsboolRead/WriteGets or sets the preserve unsupported parts.
WarningCallbackIWarningCallbackRead/WriteGets or sets the warning callback.

See Also