我使用IXLWorksheet.CopyTo
方法将工作表从一个工作簿复制到另一个工作簿,并且不会复制保护选项。我认为这是设计,但我需要复制它们。
private void CopyProtectionOptions(IXLSheetProtection source, IXLSheetProtection target)
{
target.AutoFilter = source.AutoFilter;
target.DeleteColumns = source.DeleteColumns;
target.DeleteRows = source.DeleteRows;
target.FormatCells = source.FormatCells;
target.FormatColumns = source.FormatColumns;
target.FormatRows = source.FormatRows;
target.InsertColumns = source.InsertColumns;
target.InsertHyperlinks = source.InsertHyperlinks;
target.InsertRows = source.InsertRows;
target.Objects = source.Objects;
target.PivotTables = source.PivotTables;
target.Scenarios = source.Scenarios;
target.SelectLockedCells = source.SelectLockedCells;
target.SelectUnlockedCells = source.SelectUnlockedCells;
}
是否有更好的方法然后只需复制每个标志"手动"?
答案 0 :(得分:0)
不,没有更好的方法。
您无法复制完整的保护对象,因为其中包含加密的密码。