excel cell coloring

爷,独闯天下 提交于 2019-11-26 21:35:39

问题


I am using c# to color particular cells of excel file. I am using:

Application excel = new Application();
Workbook wb = excel.Workbooks.Open(destPath);
 Worksheet ws = wb.Worksheets[1];
 ws.get_Range(ws.Cells[row, clmn]).Cells.Interior.Color = 36;

...to color cells, but this is not working. Can anyone help me out?


回答1:


Try something like that

ws.Cells[row, clmn].Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Red)



回答2:


Cells[row, clmn] is a range so you don't need to call get_Range() and there is a enum that you can use for colors.

ws.Cells[row, clmn].Interior.Color = XlRgbColor.rgbBlack;



回答3:


If you want to set color by color index, you need to use this method:

    Cells[row, col].Interior.ColorIndex = 36;



回答4:


You can color a cell or a entire column or entire row.

The below code will help you out.

xlWorkSheet.get_Range(xlWorkSheet.Cells[2, 2], xlWorkSheet.Cells[2, 4]).Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Green);

else

xlWorkSheet.get_Range(xlWorkSheet.Cells[2, 3], xlWorkSheet.Cells[2, 3]).Interior.Color = Excel.XlRgbColor.rgbRed;

Here xlWorksheet is the object excel Worksheet object.

get_Range takes 2 variable one start cell and other is end cell.

so if you specify both the values same then only one cell is colored.

xlWorkSheet.cells[row, column] is used to specify a cell.

System.Drawing.ColorTranslator.ToOle(SystemDrawing.Color.Green) is used to define the color in OLE format.

Excel.XlRgbColor.rgbRed is a excel way of coloring the cells This method gives access to large number of colors which can be found here list of colors

The below code is the way i defined the excel worksheet.

Excel.Workbook xlWorkBook;
Excel.Worksheet xlWorkSheet;
Excel.Range xlwidthadjust; //used this to adjust width of columns
object misValue = System.Reflection.Missing.Value;

xlWorkBook = xlApp.Workbooks.Add(misValue);
xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1);

with this code i am sure that you wont get this exception Exception from HRESULT: 0x800A03EC




回答5:


Make sure you are using:

using Excel = Microsoft.Office.Interop.Excel;

If you have a variable for the range you want to change, then use:

chartRange = xlWorkSheet.get_Range("a5", "a8");    
chartRange.Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Black);

If you want to just change the color of a specific cell, then use:

xlWorkSheet.Cells[row, col].Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Black);

...where 'row' is the row number, and 'col' is the column number assigned to the given lettered columns (starting at 1).




回答6:


Exception from HRESULT: 0x800A03EC

Solution: Change the misValue to sheet1, sheet2 or sheet3.

xlWorkBook = xlApp.Workbooks.Add("sheet1"); 

This works for me. system.reflaction.missing.value what was that, it is not related to Excel.workbooks.add came from a Excel file default value. When you create a Excel file, the default worksheets are sheet1, sheet2 and sheet3.



来源:https://stackoverflow.com/questions/5897062/excel-cell-coloring

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!