拖拽和下拉实际上是把单元格所有的属性都移动了,包括格式Formatter、样式Style、公式Formula等。
1、可以通过设置下拉填充的格式来实现下拉填充不改变formatter,示例代码:
- spread.options.defaultDragFillType = GC.Spread.Sheets.Fill.AutoFillType.fillWithoutFormatting;
复制代码
参考API:
https://demo.grapecity.com.cn/sp ... l.AutoFillType.html
2、可以通过禁止用户拖拽单元格的方式来阻止拖拽更改Formatter:
- spread.options.allowUserDragDrop = false;
复制代码
以上的配置项,都可以在API的Workbook上查到:
https://demo.grapecity.com.cn/sp ... heets.Workbook.html |