PPT PPTX ODP POT ppsx
Aspose.Slides  for .NET
ODP

使用 C# 鎖定或密碼保護 ODP

使用服務器端 API 構建您自己的 .NET 應用程序以保護演示文稿文件。

通過 C# 保護 ODP 演示文稿

使用 Aspose.Slides for .NET,您可以通過設置密碼來保護您的 ODP 演示文稿不被打開或修改。然後,要打開或修改鎖定的演示文稿,用戶必須提供密碼。

使用 C# 加密 ODP 演示文稿


using (Presentation presentation = new Presentation("pres.odp"))
{
    presentation.ProtectionManager.Encrypt("123123");
    presentation.Save("encrypted-pres.odp", SaveFormat.Odp);
}

使用 C# 為 ODP 演示文稿設置寫保護


using (Presentation presentation = new Presentation("pres.odp"))
{
    presentation.ProtectionManager.SetWriteProtection("123123");
    presentation.Save("write-protected-pres.odp", SaveFormat.Odp);
}

如何通過 C# 密碼保護 ODP

這些是保護 ODP 文件的步驟。

  1. 使用 Presentation 實例加載 ODP

  2. 使用 ProtectionManager 類保護演示文稿

  3. 以 ODP 格式保存結果

其他支持的保護格式

使用C#,您還可以保護以下格式: