Anyone has a solution to this ?
I’m trying to draw a shape (Rounded Rectangle or Rectangle, case happens on both), and I give the shape fill color and border fill color, the Argb color is passed exactly to the fill, but always wrong on the border
in this code i’m passing them the same color, and they are not the same in the generated excel
workbook.Worksheets[item.Index].Shapes[lastIndex].Fill.SolidFill.Color = System.Drawing.Color.FromArgb(0, 0, 255);
workbook.Worksheets[item.Index].Shapes[lastIndex].Line.SolidFill.Color = System.Drawing.Color.FromArgb(0, 0, 255);
workbook.Worksheets[item.Index].Shapes[lastIndex].Line.SolidFill.Transparency = 0;
workbook.Worksheets[item.Index].Shapes[lastIndex].Line.Weight = 3;
workbook.Worksheets[item.Index].Shapes[lastIndex].Line.SolidFill.Color = System.Drawing.Color.FromArgb(0, 0, 255);
workbook.Worksheets[item.Index].Shapes[lastIndex].Line.FillType = Aspose.Cells.Drawing.FillType.Solid;
I dunno what Argb should i pass to get the color i want
I want (255, 0, 0) on the border (red) and i always get it a different degree, darker or lighter
any help ?