excel单元格设立透明色

excel单元格设置透明色要设置透明色excelRange.Cells.Interior.Color System.Drawing.Color.FromArgb(x,

excel单元格设置透明色
要设置透明色
excelRange.Cells.Interior.Color = System.Drawing.Color.FromArgb(x,x,x,x).ToArgb(); 

FromArgb()中的参数该怎么给?
[解决办法]

excelRange.Cells.Interior.ColorIndex = 0;