0
は、私は(とりわけ)、セルの背景色を設定しようとするために、このコードを持っている:セルに色を設定するのがなぜ機能しないのですか(Aspose Cells)?
private static readonly Color CONTRACT_ITEM_COLOR = Color.FromArgb(255, 255, 204);
. . .
cell = pivotTableSheet.Cells[4, 0];
cell.PutValue(AnnualContractProductsLabel);
style = cell.GetStyle();
style.HorizontalAlignment = TextAlignmentType.Center;
style.VerticalAlignment = TextAlignmentType.Center;
style.Font.IsBold = true;
pivotTableSheet.Cells.SetRowHeight(4, 25);
style.BackgroundColor = CONTRACT_ITEM_COLOR;
pivotTableSheet.Cells[4, 0].SetStyle(style);
水平および垂直配向作品の設定、大胆かつ高そうであるよう - 色以外のすべて:
をまだ何が必要ですか?私もにForegroundColorだけでなく、背景色を設定しようとしている:
style.ForegroundColor = Color.Red;
style.BackgroundColor = Color.Blue;
...しかし、どちらも何もしません - セルは、まだ上のスクリーンショットと全く同じに見えますが。