LowCodeSplitOptions

LowCodeSplitOptions class

Options for splitting spreadsheet.

class LowCodeSplitOptions;

Constructors

ConstructorDescription
constructor()Default Constructor.

Properties

PropertyTypeDescription
loadOptionsLowCodeLoadOptionsLoad options for loading the spreadsheet that will be split.
saveOptionsLowCodeSaveOptionsSave options for saving the split parts.
saveOptionsProviderAbstractLowCodeSaveOptionsProviderProvider of save options for saving the split parts.

Methods

MethodDescription
getLoadOptions()@deprecated. Please use the ’loadOptions’ property instead. Load options for loading the spreadsheet that will be split.
setLoadOptions(LowCodeLoadOptions)@deprecated. Please use the ’loadOptions’ property instead. Load options for loading the spreadsheet that will be split.
getSaveOptions()@deprecated. Please use the ‘saveOptions’ property instead. Save options for saving the split parts.
setSaveOptions(LowCodeSaveOptions)@deprecated. Please use the ‘saveOptions’ property instead. Save options for saving the split parts.
getSaveOptionsProvider()@deprecated. Please use the ‘saveOptionsProvider’ property instead. Provider of save options for saving the split parts.
setSaveOptionsProvider(AbstractLowCodeSaveOptionsProvider)@deprecated. Please use the ‘saveOptionsProvider’ property instead. Provider of save options for saving the split parts.
isNull()Checks whether the implementation object is null.

constructor()

Default Constructor.

constructor();

loadOptions

Load options for loading the spreadsheet that will be split.

loadOptions : LowCodeLoadOptions;

saveOptions

Save options for saving the split parts.

saveOptions : LowCodeSaveOptions;

saveOptionsProvider

Provider of save options for saving the split parts.

saveOptionsProvider : AbstractLowCodeSaveOptionsProvider;

Remarks

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

getLoadOptions()

@deprecated. Please use the ’loadOptions’ property instead. Load options for loading the spreadsheet that will be split.

getLoadOptions() : LowCodeLoadOptions;

Returns

LowCodeLoadOptions

setLoadOptions(LowCodeLoadOptions)

@deprecated. Please use the ’loadOptions’ property instead. Load options for loading the spreadsheet that will be split.

setLoadOptions(value: LowCodeLoadOptions) : void;

Parameters:

ParameterTypeDescription
valueLowCodeLoadOptionsThe value to set.

getSaveOptions()

@deprecated. Please use the ‘saveOptions’ property instead. Save options for saving the split parts.

getSaveOptions() : LowCodeSaveOptions;

Returns

LowCodeSaveOptions

setSaveOptions(LowCodeSaveOptions)

@deprecated. Please use the ‘saveOptions’ property instead. Save options for saving the split parts.

setSaveOptions(value: LowCodeSaveOptions) : void;

Parameters:

ParameterTypeDescription
valueLowCodeSaveOptionsThe value to set.

getSaveOptionsProvider()

@deprecated. Please use the ‘saveOptionsProvider’ property instead. 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)

@deprecated. Please use the ‘saveOptionsProvider’ property instead. 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;