1金币
最佳答案我试着重写了一下这个Command,应该就可以了,参考以下代码:
let painterCommand = GC.Spread.Sheets.Designer.getCommand(
GC.Spread.Sheets.Designer.CommandNames.RibbonFormatPainter
);
let oldExecute = painterCommand.execute;
painterCommand.execute = function (context, propertyName, args) {
oldExecute.call(this, context, propertyName, args);
console.log(painterCommand.getS ...
| |
| |
| |
| |
| |
| |