gpt4 book ai didi

c# - Protect UserInterfaceOnly 和 EnableOutlining

转载 作者:行者123 更新时间:2023-11-30 16:13:33 26 4
gpt4 key购买 nike

我正在为 Excel 创建插件。它正在保护工作簿中的工作表:

public static void ProtectSheetUi(_Worksheet sheet, string password)
{
sheet.EnableOutlining = true;
sheet.Protect(password, Contents: true, UserInterfaceOnly: true, AllowFormattingCells: true,
AllowFormattingColumns: true, AllowFormattingRows: true);
}

但问题是当我关闭并重新打开工作簿时,分组/取消分组不起作用。这是因为 UserInterfaceOnly 不是持久的。在工作簿级别,我可以在打开时取消保护并再次保护工作表。但是如何通过加载项实现这一点?

最佳答案

UserInterfaceOnly 设置在您关闭工作簿时不会保存。打开工作簿时,您必须重置它。执行此操作的最佳位置是在 Workbook_Open 事件过程中。所以你需要在你的加载项中处理它。例如(凭内存执行此操作,因此请忽略拼写错误/语法错误)

private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
this.Application.WorkbookOpen +=
new Excel.AppEvents_WorkbookOpenEventHandler(Application_WorkbookOpen);
}

void Application_WorkbookOpen(Excel.Workbook Wb)
{
//~~> Rest of your code
}

关于c# - Protect UserInterfaceOnly 和 EnableOutlining,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21599079/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com