LowCodeSplitOptions

LowCodeSplitOptions class

Options for splitting spreadsheet.

class LowCodeSplitOptions;

Constructors

NameDescription
constructor()Default Constructor.

Methods

MethodDescription
getLoadOptions()Load options for loading the spreadsheet that will be split.
setLoadOptions(LowCodeLoadOptions)Load options for loading the spreadsheet that will be split.
getSaveOptions()Save options for saving the split parts.
setSaveOptions(LowCodeSaveOptions)Save options for saving the split parts.
getSaveOptionsProvider()Provider of save options for saving the split parts.
setSaveOptionsProvider(AbstractLowCodeSaveOptionsProvider)Provider of save options for saving the split parts.
isNull()Checks whether the implementation object is null.

constructor()

Default Constructor.

constructor();

getLoadOptions()

Load options for loading the spreadsheet that will be split.

getLoadOptions() : LowCodeLoadOptions;

Returns

LowCodeLoadOptions

setLoadOptions(LowCodeLoadOptions)

Load options for loading the spreadsheet that will be split.

setLoadOptions(value: LowCodeLoadOptions) : void;

Parameters:

ParameterTypeDescription
valueLowCodeLoadOptionsThe value to set.

getSaveOptions()

Save options for saving the split parts.

getSaveOptions() : LowCodeSaveOptions;

Returns

LowCodeSaveOptions

setSaveOptions(LowCodeSaveOptions)

Save options for saving the split parts.

setSaveOptions(value: LowCodeSaveOptions) : void;

Parameters:

ParameterTypeDescription
valueLowCodeSaveOptionsThe value to set.

getSaveOptionsProvider()

Provider of save options for saving the split parts.

getSaveOptionsProvider() : AbstractLowCodeSaveOptionsProvider;

Returns

AbstractLowCodeSaveOptionsProvider

Remarks

If this property is specified, SaveOptions takes no effect because the output of every split part will be specified by the provider.

setSaveOptionsProvider(AbstractLowCodeSaveOptionsProvider)

Provider of save options for saving the split parts.

setSaveOptionsProvider(value: AbstractLowCodeSaveOptionsProvider) : void;

Parameters:

ParameterTypeDescription
valueAbstractLowCodeSaveOptionsProviderThe value to set.

Remarks

If this property is specified, SaveOptions takes no effect because the output of every split part will be specified by the provider.

isNull()

Checks whether the implementation object is null.

isNull() : boolean;