您好,
方案1:
可以考虑通过表单保护来实现,即设置单元格为未锁定状态(即允许编辑),设置不允许调整行高。
对于其他option可以设置允许。
具体可参考学习指南相关介绍:
https://demo.grapecity.com.cn/sp ... t/protection/purejs
方案2:
监听RowHeightChanging事件,设置cancel为true,示例代码如下:
- sheet.bind(GC.Spread.Sheets.Events.RowHeightChanging, function (e, info) {
- console.log("Row List (" + info.rowList + ")");
- info.cancel = true;
- sheet.repaint();
- });
复制代码
API链接:https://demo.grapecity.com.cn/sp ... s#rowheightchanging
|