标签:style blog http color ar os sp div on
前面写了一篇博文是关于 C# 操作 Excel 的文章,但是里面有些中规中矩,搞的我不知道怎么写了,所以另开一帖。。
2014年11月10日
eWorkbook.Sheet.Add(eWorksheet, nothing, nothing, nothing); //在eWorksheet之前添加一个新sheet eWorkbook.Sheet.Add(nothing, eWorksheet, nothing, nothing); //在eWorksheet之后添加一个新sheet
注意:sheet的索引是从1开始的。。
参考:戳这儿!
Excel.Range eRange = eWorksheet.get_Range("A1", "C1"); eRange.MergeCells = true; eRange.Value = "还好快乐";
eRange.HorizontalAlignment = Excel.XlHAlign.xlHAlignCenter;
eWorksheet.Cells.Columns.AutoFit();
标签:style blog http color ar os sp div on
原文地址:http://www.cnblogs.com/alex-bn-lee/p/4087590.html