스프레드시트 잠금 해제기

Sheetize Spreadsheet Unlocker for .NET 는 스파이더에서 보호를 제거 할 수있는 능력을 제공하여 개발자가 잠겨있는 콘텐츠를 편집하거나 수정할 수 있습니다.

주요 기능

보호된 스파이더를 해제합니다.

암호 보호 또는 폴더 레벨 잠금을 제거하여 스파이더에 대한 변경을 허용합니다.

자세한 가이드

보호된 스프레이시트를 해제하는 방법

보호된 스파이더를 해제하려면:

  • Initialize the Unlocker : 예를 들어 시작하십시오. SpreadsheetUnlocker.
  • Unlocking Credentials를 제공합니다 : 암호를 설정하거나 다른 Unlock Parameters를 지정합니다.
  • 입력 및 출력 경로를 정의하십시오 : 입력 잠겨 있는 파일과 출력이 잠금되지 않은 파일에 대한 길을 설정합니다.
  • Unlocking을 실행하십시오 : Call the Process 파일을 해제하는 방법.

예: XLSX 파일을 해제합니다.

// Step 1: Initialize the Spreadsheet Unlocker
var unlocker = new SpreadsheetUnlocker();

// Step 2: Set unlocking credentials
var options = new UnlockerLoadOptions();
options.Password = "password123";

// Step 3: Set file paths
options.AddInput(new FileDataSource("locked_input.xlsx"));
options.AddOutput(new FileDataSource("unlocked_output.xlsx"));

// Step 4: Run the unlocking process
unlocker.Process(options);

Spreadsheet Unlocker는 개발자가 보호된 spreadsheets를 프로그래밍적으로 수정해야 하는 데 유용합니다.

 한국어