我们GcExcel暂时不支持类似Excel“允许区域编辑”的功能,而对于您不想用户解除隐藏行列,您可以通过工作表保护 + 不允许设置行列格式来实现:
代码:
- sheet.options.protectionOptions.formatColumns = false// 不允许设置列格式
- sheet.options.protectionOptions.formatRows= false// 不允许设置行格式
- sheet.options.isProtected = true// 工作表保护
复制代码
GcExcel中对应的方法:
- IProtectionSettings protectionSettings = iWorksheet.getProtectionSettings();
- protectionSettings.setAllowFormattingColumns(false);
- protectionSettings.setAllowFormattingRows(false);
- iWorksheet.protect();
复制代码
|