九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
C# 操作 Excel 要點(diǎn)
C# 操作 Excel 要點(diǎn)
1、 引用Microsoft.Office.Interop.Excel.dll
打開VS2008的“解決方案資源管理器”,在“引用”文件夾下點(diǎn)擊鼠標(biāo)右鍵,選擇“添加引用”,打開“添加引用”對話框。
 

在“組件名稱”那里找到“Microsoft.Office.Interop.Excel”,如上圖所示。這里顯示有兩個(gè)可供選擇的“Microsoft.Office.Interop.Excel”版本,我們選擇其中的一個(gè)就可以了。單擊“確定”,該組件就被正確引用進(jìn)來了,如下圖所示。
 

2、引用命名空間、使用別名
using System.Reflection;
using Excel = Microsoft.Office.Interop.Excel;
 
3、簡單例子
public void ToExcel(string strTitle)
{
int rowCount = nMax - nMin + 1;//總行數(shù)
const int columnCount = 4;//總列數(shù)
 
//創(chuàng)建Excel對象
Excel.Application excelApp = new Excel.ApplicationClass();
 
//新建工作簿
Excel.Workbook workBook = excelApp.Workbooks.Add(true);
 
//新建工作表
Excel.Worksheet worksheet = workBook.ActiveSheet as Excel.Worksheet;
 
//設(shè)置標(biāo)題
Excel.Range titleRange = worksheet.get_Range(worksheet.Cells[1, 1], worksheet.Cells[1, columnCount]);//選取單元格
titleRange.Merge(true);//合并單元格
titleRange.Value2 = strTitle; //設(shè)置單元格內(nèi)文本
titleRange.Font.Name = "宋體";//設(shè)置字體
titleRange.Font.Size = 18;//字體大小
titleRange.Font.Bold = true;//加粗顯示
titleRange.HorizontalAlignment = Excel.XlHAlign.xlHAlignCenter;//水平居中
titleRange.VerticalAlignment = Excel.XlVAlign.xlVAlignCenter;//垂直居中
titleRange.Borders.LineStyle = Excel.XlLineStyle.xlContinuous;//設(shè)置邊框
titleRange.Borders.Weight = Excel.XlBorderWeight.xlMedium;//邊框常規(guī)粗細(xì)
 
//設(shè)置表頭
string[] strHead = new string[columnCount] { "序號", "分組", "頻數(shù)", "相對頻數(shù)" };
int[] columnWidth = new int[4] { 8, 16, 8, 10 };
for (int i = 0; i < columnCount; i++)
{
Excel.Range headRange = worksheet.Cells[2, i + 1] as Excel.Range;//獲取表頭單元格
headRange.Value2 = strHead[i];//設(shè)置單元格文本
headRange.Font.Name = "宋體";//設(shè)置字體
headRange.Font.Size = 12;//字體大小
headRange.Font.Bold = true;//加粗顯示
headRange.HorizontalAlignment = Excel.XlHAlign.xlHAlignCenter;//水平居中
headRange.VerticalAlignment = Excel.XlVAlign.xlVAlignCenter;//垂直居中
headRange.ColumnWidth = columnWidth[i];//設(shè)置列寬
headRange.Borders.LineStyle = Excel.XlLineStyle.xlContinuous;//設(shè)置邊框
headRange.Borders.Weight = Excel.XlBorderWeight.xlMedium;//邊框常規(guī)粗細(xì)
}
 
//設(shè)置每列格式
for (int i = 0; i < columnCount; i++)
{
Excel.Range contentRange = worksheet.get_Range(worksheet.Cells[3, i+1], worksheet.Cells[rowCount-1 + 3, i+1]);
contentRange.HorizontalAlignment = Excel.XlHAlign.xlHAlignCenter;//水平居中
contentRange.VerticalAlignment = Excel.XlVAlign.xlVAlignCenter;//垂直居中
contentRange.Borders.LineStyle = Excel.XlLineStyle.xlContinuous;//設(shè)置邊框
contentRange.Borders.Weight = Excel.XlBorderWeight.xlMedium;//邊框常規(guī)粗細(xì)
contentRange.WrapText = true;//自動換行
contentRange.NumberFormatLocal = "@";//文本格式
}
 
//填充數(shù)據(jù)
for (int i = nMin; i <= nMax; i++)
{
int k = i - nMin;
excelApp.Cells[k + 3, 1] = string.Format("{0}", k + 1);
excelApp.Cells[k + 3, 2] = string.Format("{0}-{1}", i - 0.5, i + 0.5);
excelApp.Cells[k + 3, 3] = string.Format("{0}", subordinativeValues[k].count);
excelApp.Cells[k + 3, 4] = string.Format("{0:0.0000}", subordinativeValues[k].frequency);
}
 
//設(shè)置Excel可見
excelApp.Visible = true;
}
 
本文來自CSDN博客,轉(zhuǎn)載請標(biāo)明出處:http://blog.csdn.net/zhaobisha/archive/2009/02/04/3862568.aspx
本站僅提供存儲服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點(diǎn)擊舉報(bào)。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
C#實(shí)戰(zhàn)005:Excel操作
關(guān)于C#操作EXCEL,生成圖表的全面應(yīng)用之二(利用Microsoft.Office.In...
Excel 2003 視頻教程
c#寫word文檔基礎(chǔ)操作
006 C# 自動生成信息卡
C# ASP.Net VS2010 word 2010生成水印
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長圖 關(guān)注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服