在旧版(Excel Interop)代码中,可以这样做以为单元格指定自定义颜色:
contractCell.Interior.Color = ColorTranslator.ToOle(Color.FromArgb(202, 134, 250));
使用Aspose Cells,我试图找到相应的方法来做到这一点。这段代码:
styleContractRow2.ForegroundColor = ColorTranslator.ToOle(Color.FromArgb(202, 134, 250));
styleContractRow2.Pattern = BackgroundType.Solid;
...没有编译,告诉我," 无法隐式转换类型' int'到' System.Drawing.Color' "
那么如何在Aspose Cells中指定自定义颜色?
答案 0 :(得分:2)
请查看your Aspose.Cells forum thread中的回复和示例代码。
注意: 我在Aspose担任开发人员传播者
答案 1 :(得分:1)
似乎翻译是不必要的;这编译:
styleContractRow2.ForegroundColor = Color.FromArgb(202, 134, 250);