Aspose::Cells::LowCode::SpreadsheetSplitter::Process method

SpreadsheetSplitter::Process(const U16String&, const U16String&) method

Splits given template file into multiple parts.

static void Aspose::Cells::LowCode::SpreadsheetSplitter::Process(const U16String &templateFile, const U16String &resultFile)
ParameterTypeDescription
templateFileconst U16String&The template file to be split
resultFileconst U16String&The resultant file(name pattern)

Remarks

The output files will be build from the specified resultant file by appending sequence number of the sheet and split part. For example, if the specified output file is Split.xlsx, then the generated files will be Split_0_0.xlsx, Split_0_1.xlsx, …, Split_1_0.xlsx, …

See Also

SpreadsheetSplitter::Process(const char16_t*, const char16_t*) method

Splits given template file into multiple parts.

static void Aspose::Cells::LowCode::SpreadsheetSplitter::Process(const char16_t *templateFile, const char16_t *resultFile)
ParameterTypeDescription
templateFileconst char16_t*The template file to be split
resultFileconst char16_t*The resultant file(name pattern)

Remarks

The output files will be build from the specified resultant file by appending sequence number of the sheet and split part. For example, if the specified output file is Split.xlsx, then the generated files will be Split_0_0.xlsx, Split_0_1.xlsx, …, Split_1_0.xlsx, …

See Also

SpreadsheetSplitter::Process(const LowCodeSplitOptions&) method

Splits spreadsheet file into multiple parts.

static void Aspose::Cells::LowCode::SpreadsheetSplitter::Process(const LowCodeSplitOptions &options)
ParameterTypeDescription
optionsconst LowCodeSplitOptions&Options for splitting spreadsheet

See Also