//把整个excel的sheet都设置为白色:
xSt.get_Range(xSt.Cells[1, 1], xSt.Cells[xSt.Rows.Count, xSt.Columns.Count]).Interior.Color = Color.FromArgb(255, 255, 255);//设置excel中的数字按照文本的格式进行显示:
xSt.get_Range(xSt.Cells[1, 1], xSt.Cells[xSt.Rows.Count, xSt.Columns.Count]).NumberFormatLocal = "@";