C#動態生成EXCLE並進行新增內容(轉)

iDotNetSpace發表於2010-06-07
Microsoft Excel是Microsoft Office的一個元件,是功能強大的電子表格處理軟體,它與文字處理軟體的差別在於它能夠運算複雜的公式,並且有條理地顯示結果。Microsoft Excel是除了Microsoft Word之外最常用的辦公軟體之一,本節將介紹如何使用C#建立Excel文件。
與在C#中新增Word文件的方法類似,新增Excel文件時需要為專案新增對Microsoft Excel X Object Library的引用,其中的X對應為版本號。Excel 2007對應12.0。在Microsoft Excel X Object Library中,一個Excel文件由MSExcel.Workbook表示。

using System;
using System.IO;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using MSEXCLE = Microsoft.Office.Interop.Excel;//定義MSEXCLE
using System.Reflection;
namespace 動態建立EXCLE並新增文字圖表
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private MSEXCLE.Application excleapp;//定義excleapp應用程式
        private MSEXCLE.Workbook excleWok;//定義exclework文件
        private void button1_Click(object sender, EventArgs e)
        {
            object filename = "f:\\aa.xls";
            //若f:\\aa.xls中檔案存在那麼就刪除這個檔案
            if (File.Exists((string)filename))
            {
                File.Delete((string)filename);
            }
            object Nothing=System.Reflection.Missing.Value;//定義Nothing
            excleapp = new MSEXCLE.ApplicationClass();//對excleapp進行初始化
            excleWok = excleapp.Workbooks.Add(Nothing);//對exclework進行初始化
            MSEXCLE.Worksheet ws = (MSEXCLE.Worksheet)excleWok.Worksheets[1];//定義ws為工作文件中的第一個sheet
            MSEXCLE.Range range1 = ws.get_Range("A1", "A1");//選定(A1,A1)這個單元格
            range1.Value2 = "3";//對這個單元格進行填充內容
            range1 = ws.get_Range("A2", "A2");//同上
            range1.Value2 = "5.7";//同上
            range1 = ws.get_Range("A3", "A3");//同上
            range1.Value2 = "4.8";//同上
            range1 = ws.get_Range("A4", "A4");//同上
            range1.Value2 = "9.2";//同上
            range1 = ws.get_Range("A5", "A5");//同上
            range1.Value2 = "6.4";//同上
            excleWok.Charts.Add(Nothing, Nothing, Nothing, Nothing);//新增一個圖表
            excleWok.ActiveChart.ChartType = MSEXCLE.XlChartType.xl3DColumnClustered  ;//設定圖表的型別是三維柱狀圖
            excleWok.ActiveChart.SetSourceData(ws.get_Range("A1", "A5"), MSEXCLE.XlRowCol.xlColumns  );//設定這個三維柱狀圖的資料來源
            excleWok.ActiveChart.Location(MSEXCLE.XlChartLocation.xlLocationAsObject, "sheet1");//設定你要將這個柱狀圖新增到什麼地方
            excleWok.ActiveChart.HasTitle = true;//設定柱狀圖是否有標題
            excleWok.ActiveChart.ChartTitle.Text = "建立圖表";//設定標題的內容為“建立圖表”
            excleWok.ActiveChart.HasDataTable = false;//設定柱狀圖是否有資料表
            excleWok.SaveAs(filename, Nothing , Nothing, Nothing, Nothing, Nothing, MSEXCLE.XlSaveAsAccessMode.xlExclusive, Nothing, Nothing, Nothing, Nothing, Nothing);//儲存動態生成的excle表
            //釋放資源
            excleapp.Application.Quit();
            if (excleapp != null)
                excleapp = null;
        }
    }
}

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-664566/,如需轉載,請註明出處,否則將追究法律責任。

相關文章