LowCodeSplitOptions
LowCodeSplitOptions class
Options for splitting spreadsheet.
class LowCodeSplitOptions;
Constructors
Constructor | Description |
---|---|
constructor() | Default Constructor. |
Properties
Property | Type | Description |
---|---|---|
loadOptions | LowCodeLoadOptions | Load options for loading the spreadsheet that will be split. |
saveOptions | LowCodeSaveOptions | Save options for saving the split parts. |
saveOptionsProvider | AbstractLowCodeSaveOptionsProvider | Provider of save options for saving the split parts. |
Methods
Method | Description |
---|---|
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
setLoadOptions(LowCodeLoadOptions)
@deprecated. Please use the ’loadOptions’ property instead. Load options for loading the spreadsheet that will be split.
setLoadOptions(value: LowCodeLoadOptions) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | LowCodeLoadOptions | The value to set. |
getSaveOptions()
@deprecated. Please use the ‘saveOptions’ property instead. Save options for saving the split parts.
getSaveOptions() : LowCodeSaveOptions;
Returns
setSaveOptions(LowCodeSaveOptions)
@deprecated. Please use the ‘saveOptions’ property instead. Save options for saving the split parts.
setSaveOptions(value: LowCodeSaveOptions) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | LowCodeSaveOptions | The 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:
Parameter | Type | Description |
---|---|---|
value | AbstractLowCodeSaveOptionsProvider | The 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;