LoadOptions

Overview

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

Represents options for loading a workbook.

This class provides 12 methods for working with LoadOptions objects in Java programs. Available methods include: getLoadFormat, getWarningCallback, isPreserveUnsupportedParts, isStrictMode, isTryRepairPackage, isTryRepairXml, setLoadFormat, setPreserveUnsupportedParts, setStrictMode, setTryRepairPackage, setTryRepairXml, setWarningCallback. All exported members are accessible to any Java application after installing the Aspose.Cells FOSS for Java package. Properties: loadFormat, preserveUnsupportedParts, strictMode, tryRepairPackage, tryRepairXml, warningCallback.

Properties

NameTypeAccessDescription
loadFormatLoadFormatReadReturns the load format.
strictModebooleanReadIndicates whether strict mode.
tryRepairPackagebooleanReadIndicates whether try repair package.
tryRepairXmlbooleanReadIndicates whether try repair xml.
preserveUnsupportedPartsbooleanReadIndicates whether preserve unsupported parts.
warningCallbackIWarningCallbackReadReturns the warning callback.

Methods

SignatureDescription
getLoadFormat()LoadFormatReturns the load format.
setLoadFormat(loadFormat: LoadFormat)Sets the load format.
isStrictMode()booleanIndicates whether strict mode.
setStrictMode(strictMode: boolean)Sets the strict mode.
isTryRepairPackage()booleanIndicates whether try repair package.
setTryRepairPackage(tryRepairPackage: boolean)Sets the try repair package.
isTryRepairXml()booleanIndicates whether try repair xml.
setTryRepairXml(tryRepairXml: boolean)Sets the try repair xml.
isPreserveUnsupportedParts()booleanIndicates whether preserve unsupported parts.
setPreserveUnsupportedParts(preserveUnsupportedParts: boolean)Sets the preserve unsupported parts.
getWarningCallback()IWarningCallbackReturns the warning callback.
setWarningCallback(warningCallback: IWarningCallback)Sets the warning callback.

See Also