您好,您需要重写MyCellType.prototype.paint方法,像这样在style.watermark中设置水印。
MyCellType.prototype.paint = function (ctx, value, x, y, w, h, style, options) {
style.watermark = "User name";
GC.Spread.Sheets.CellTypes.Text.prototype.paint.call(this, ctx, value, x, y, w, h, style, options);
};
如果还有问题,需要您提供一个demo,我们帮您具体看一下哪里问题。 |