如何为Aspose单元格中的单元格指定自定义颜色?

时间:2017-01-30 18:52:30

标签: excel-interop aspose aspose-cells argb colortransform

在旧版(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中指定自定义颜色?

2 个答案:

答案 0 :(得分:2)

请查看your Aspose.Cells forum thread中的回复和示例代码。

注意: 我在Aspose担任开发人员传播者

答案 1 :(得分:1)

似乎翻译是不必要的;这编译:

styleContractRow2.ForegroundColor = Color.FromArgb(202, 134, 250);