LowCodeSplitOptions
LowCodeSplitOptions class
Options for splitting spreadsheet.
class LowCodeSplitOptions;
Constructors
Name | Description |
---|---|
constructor() | Default Constructor. |
Methods
Method | Description |
---|---|
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
setLoadOptions(LowCodeLoadOptions)
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()
Save options for saving the split parts.
getSaveOptions() : LowCodeSaveOptions;
Returns
setSaveOptions(LowCodeSaveOptions)
Save options for saving the split parts.
setSaveOptions(value: LowCodeSaveOptions) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | LowCodeSaveOptions | The 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:
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;