Class SpreadsheetUnlocker
Info
Unlocks spreadsheet file.
public class SpreadsheetUnlocker
Inheritance
Inherited Members
- object.GetType(),
- object.MemberwiseClone(),
- object.ToString(),
- object.Equals(object?),
- object.Equals(object?, object?),
- object.ReferenceEquals(object?, object?),
- object.GetHashCode()
Examples
[C#]
UnlockerLoadOptions loadOptions = new UnlockerLoadOptions();
loadOptions.InputFile = "Template.xlsx";
loadOptions.Password = "password to open file";
SaveOptions saveOptions = new SaveOptions();
saveOptions.OutputFile = "res.xlsx";
SpreadsheetUnlocker.Process(loadOptions, saveOptions);
Methods
Process(UnlockerLoadOptions, SaveOptions)
public static void Process(UnlockerLoadOptions loadOptions, SaveOptions saveOptions)
Parameters
loadOptions
UnlockerLoadOptions: Options for input and loading:saveOptions
SaveOptions: Options for output and saving
Remarks
The re-saved file after being unlocked will always have the same format with the source file.
Namespace: Sheetize Assembly: Sheetize.dll