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;
}
}
}