您可以用下面的代码在填充后清除这部分的tag
- sheet.bind(GC.Spread.Sheets.Events.DragFillBlockCompleted, function (e, info) {
-
- sheet.clear(info.fillRange.row, info.fillRange.col, info.fillRange.rowCount, info.fillRange.colCount, GC.Spread.Sheets.SheetArea.viewport, GC.Spread.Sheets.StorageType.tag);
-
- });
复制代码
|