HTML JPG PDF XML XLSB
Aspose.Cells  for .NET
XLSB

Unlock XLSB Spreadsheet via C#

Remove protection from XLSB using .NET library.

How to Unlock XLSB File Using C#

In order to remove protection XLSB file, we’ll use

Aspose.Cells for .NET

API which is a feature-rich, powerful and easy to use document protection API for C# platform. Open

NuGet

package manager, search for Aspose.Cells and install. You may also use the following command from the Package Manager Console.

Aspose.Cells


PM> Install-Package Aspose.Cells

Unlock XLSB via C#

You need

aspose.cells.dll

referenced in your project to execute the following workflow.

  1. Instantiate Workbook class with path to protected XLSB file
  2. Get the default or any Worksheet to remove protection
  3. Remove Worksheet protection with Worksheet.Unprotect method
  4. Remove Workbook protection with Workbook.Unprotect method
  5. Save result in XLSB format

System Requirements

Aspose.Cells for .NET is supported on all major operating systems. Just make sure that you have the following prerequisites.

  • Microsoft Windows or a compatible OS with .NET Framework, .NET Core, Mono or Xamarin Platforms
  • Development environment like Microsoft Visual Studio
  • Add reference to the Aspose.Cells for .NET DLL in your project
 

Command


// instantiate a Workbook object with protected XLSB file
var workbook = new Aspose.Cells.Workbook("protected.xlsb");

// access the default worksheet in the Excel file
var worksheet = workbook.Worksheets[0];

// unprotect worksheet without a password
worksheet.Unprotect();

// unprotect workbook with password
workbook.Unprotect("password");

// save the result back in XLSB format
workbook.Save("unprotected.xlsb", Aspose.Cells.SaveFormat.Auto);
 
  • About Aspose.Cells for .NET API

    Aspose.Cells API can be used to create, edit, convert and render Microsoft Excel formats to different formats. Moreover, it can be used for comprehensive charting, scalable reporting and reliable calculations within software applications. Aspose.Cells is a standalone API and it does not require any software like Microsoft or OpenOffice.

    Free App to Unlock XLSB

    Other Supported Unlocking Formats

    Using C#, one can easily remove protection / unlocking of different formats including.

    ODS (OpenDocument Spreadsheet File)
    XLS (Excel Binary Format)
    XLSM (Spreadsheet File)
    XLSX (OOXML Excel File)