我的程序如下:
this.excel = new ApplicationClass();
int num1 = 1;
int num2 = 0;
this.excel.Application.Workbooks.Add(true);
System.Data.DataTable table1 = this.dsStatistics.Tables[0];
this.excel.Cells[1, 1] = "300";
this.excel.Cells[1, 2] = "500";
this.excel.Cells[1, 3] = "100";
this.excel.Cells[1, 4] = "700";
this.excel.Visible = true;怎么改这个字体和大小呢?
谢谢!