1. 我是要在 现有的单元格类型下拉列表中加入一个列表项
2. 然后,实现添加自定义单元格类型的功能
我是使用const cmdCellType = GC.Spread.Sheets.Designer.getCommand('cellType')获取到后 cmdCellType.subCommands.push('imageCellType')添加了一个cmd 然后没有效果,加的列表项没有出来
imageCellType: {
text: '图片',
commandName: 'imageCellType',
iconClass: 'cmdSaveData',
execute: () => {
console.log('图片自定义')
}
}
|