process method

process(, load_options, save_options, provider)

Locks spreadsheet file with specified settings.


@staticmethod
def process(load_options, save_options, provider):
    ...
ParameterTypeDescription
load_optionsaspose.cells.lowcode.LowCodeLoadOptionsOptions for input and loading
save_optionsaspose.cells.lowcode.LowCodeSaveOptionsOptions for output and saving
provideraspose.cells.lowcode.AbstractLowCodeProtectionProviderImplementation to provide protections settings

process(, template_file, result_file, open_password, write_password)

Locks spreadsheet file with specified settings.


@staticmethod
def process(template_file, result_file, open_password, write_password):
    ...
ParameterTypeDescription
template_fileSystem.StringThe template file to be locked
result_fileSystem.StringThe resultant file
open_passwordSystem.StringPassword for file encryption
write_passwordSystem.StringPassword for protection of modifying spreadsheet

process(, load_options, save_options, open_password, write_password)

Locks spreadsheet file with specified settings.


@staticmethod
def process(load_options, save_options, open_password, write_password):
    ...
ParameterTypeDescription
load_optionsaspose.cells.lowcode.LowCodeLoadOptionsOptions for input and loading
save_optionsaspose.cells.lowcode.LowCodeSaveOptionsOptions for output and saving
open_passwordSystem.StringPassword for file encryption
write_passwordSystem.StringPassword for protection of modifying spreadsheet

process(, load_options, save_options, open_password, write_password, workbook_password, workbook_type)

Locks spreadsheet file with specified settings.


@staticmethod
def process(load_options, save_options, open_password, write_password, workbook_password, workbook_type):
    ...
ParameterTypeDescription
load_optionsaspose.cells.lowcode.LowCodeLoadOptionsOptions for input and loading
save_optionsaspose.cells.lowcode.LowCodeSaveOptionsOptions for output and saving
open_passwordSystem.StringPassword for file encryption
write_passwordSystem.StringPassword for protection of modifying spreadsheet
workbook_passwordSystem.StringPassword for protection of the workbook
workbook_typeaspose.cells.ProtectionTypeProtection type to protect the workbook

See Also