欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

C#生成word記錄實例解析

 更新時間:2014年08月06日 10:05:26   投稿:shichen2014  
這篇文章主要介紹了C#生成word記錄實例解析,很實用的功能,需要的朋友可以參考下

本文以實例形式講述了C#生成Word記錄的方法,具體實現(xiàn)代碼如下:

private void button1_Click(object sender, System.EventArgs e)
{
object oMissing = System.Reflection.Missing.Value;
object oEndOfDoc = "\\endofdoc";

/* \endofdoc是預定義的bookmark */ 

//創(chuàng)建一個document.
Word._Application oWord;
Word._Document oDoc;
oWord = new Word.Application();
oWord.Visible = true;
oDoc = oWord.Documents.Add(ref oMissing, ref oMissing,
ref oMissing, ref oMissing);

//在document的開始部分添加一個paragraph.
Word.Paragraph oPara1;
oPara1 = oDoc.Content.Paragraphs.Add(ref oMissing);
oPara1.Range.Text = "Heading 1";
oPara1.Range.Font.Bold = 1;
oPara1.Format.SpaceAfter = 24;    //24 pt spacing after paragraph.
oPara1.Range.InsertParagraphAfter();

//在當前document的最后添加一個paragraph

Word.Paragraph oPara2;
object oRng = oDoc.Bookmarks.get_Item(ref oEndOfDoc).Range;
oPara2 = oDoc.Content.Paragraphs.Add(ref oRng);
oPara2.Range.Text = "Heading 2";
oPara2.Format.SpaceAfter = 6;
oPara2.Range.InsertParagraphAfter();

//接著添加一個paragraph
Word.Paragraph oPara3;
oRng = oDoc.Bookmarks.get_Item(ref oEndOfDoc).Range;
oPara3 = oDoc.Content.Paragraphs.Add(ref oRng);
oPara3.Range.Text = "This is a sentence of normal text. Now here is a table:";
oPara3.Range.Font.Bold = 0;
oPara3.Format.SpaceAfter = 24;
oPara3.Range.InsertParagraphAfter();

//添加一個3行5列的表格,填充數(shù)據(jù),并且設定第一行的樣式

Word.Table oTable;
Word.Range wrdRng = oDoc.Bookmarks.get_Item(ref oEndOfDoc).Range;
oTable = oDoc.Tables.Add(wrdRng, 3, 5, ref oMissing, ref oMissing);
oTable.Range.ParagraphFormat.SpaceAfter = 6;
int r, c;
string strText;
for(r = 1; r <= 3; r++)
for(c = 1; c <= 5; c++)
{
strText = "r" + r + "c" + c;
oTable.Cell(r, c).Range.Text = strText;
}
oTable.Rows[1].Range.Font.Bold = 1;
oTable.Rows[1].Range.Font.Italic = 1;

//接著添加一些文字

Word.Paragraph oPara4;
oRng = oDoc.Bookmarks.get_Item(ref oEndOfDoc).Range;
oPara4 = oDoc.Content.Paragraphs.Add(ref oRng);
oPara4.Range.InsertParagraphBefore();
oPara4.Range.Text = "And here's another table:";
oPara4.Format.SpaceAfter = 24;
oPara4.Range.InsertParagraphAfter();


//添加一個5行2列的表,填充數(shù)據(jù)并且改變列寬
wrdRng = oDoc.Bookmarks.get_Item(ref oEndOfDoc).Range;
oTable = oDoc.Tables.Add(wrdRng, 5, 2, ref oMissing, ref oMissing);
oTable.Range.ParagraphFormat.SpaceAfter = 6;
for(r = 1; r <= 5; r++)
for(c = 1; c <= 2; c++)
{
strText = "r" + r + "c" + c;
oTable.Cell(r, c).Range.Text = strText;
}
oTable.Columns[1].Width = oWord.InchesToPoints(2); //Change width of columns 1 & 2
oTable.Columns[2].Width = oWord.InchesToPoints(3);

//Keep inserting text. When you get to 7 inches from top of the
//document, insert a hard page break.
object oPos;
double dPos = oWord.InchesToPoints(7);
oDoc.Bookmarks.get_Item(ref oEndOfDoc).Range.InsertParagraphAfter();
do
{
wrdRng = oDoc.Bookmarks.get_Item(ref oEndOfDoc).Range;
wrdRng.ParagraphFormat.SpaceAfter = 6;
wrdRng.InsertAfter("A line of text");
wrdRng.InsertParagraphAfter();
oPos = wrdRng.get_Information
              (Word.WdInformation.wdVerticalPositionRelativeToPage);
}
while(dPos >= Convert.ToDouble(oPos));
object oCollapseEnd = Word.WdCollapseDirection.wdCollapseEnd;
object oPageBreak = Word.WdBreakType.wdPageBreak;
wrdRng.Collapse(ref oCollapseEnd);
wrdRng.InsertBreak(ref oPageBreak);
wrdRng.Collapse(ref oCollapseEnd);
wrdRng.InsertAfter("We're now on page 2. Here's my chart:");
wrdRng.InsertParagraphAfter();

//添加一個chart

Word.InlineShape oShape;
object oClassType = "MSGraph.Chart.8";
wrdRng = oDoc.Bookmarks.get_Item(ref oEndOfDoc).Range;
oShape = wrdRng.InlineShapes.AddOLEObject(ref oClassType, ref oMissing, 
ref oMissing, ref oMissing, ref oMissing,
ref oMissing, ref oMissing, ref oMissing);

//Demonstrate use of late bound oChart and oChartApp objects to
//manipulate the chart object with MSGraph.
object oChart;
object oChartApp;
oChart = oShape.OLEFormat.Object;
oChartApp = oChart.GetType().InvokeMember("Application",
BindingFlags.GetProperty, null, oChart, null);

//Change the chart type to Line.
object[] Parameters = new Object[1];
Parameters[0] = 4; //xlLine = 4
oChart.GetType().InvokeMember("ChartType", BindingFlags.SetProperty,
null, oChart, Parameters);

//Update the chart image and quit MSGraph.
oChartApp.GetType().InvokeMember("Update",
BindingFlags.InvokeMethod, null, oChartApp, null);
oChartApp.GetType().InvokeMember("Quit",
BindingFlags.InvokeMethod, null, oChartApp, null);
//... If desired, you can proceed from here using the Microsoft Graph 
//Object model on the oChart and oChartApp objects to make additional
//changes to the chart.

//Set the width of the chart.
oShape.Width = oWord.InchesToPoints(6.25f);
oShape.Height = oWord.InchesToPoints(3.57f);

//Add text after the chart.
wrdRng = oDoc.Bookmarks.get_Item(ref oEndOfDoc).Range;
wrdRng.InsertParagraphAfter();
wrdRng.InsertAfter("THE END.");

//Close this form.
this.Close();
}

使用模板生成通用格式Word文件:

如果您要使用自動化功能創(chuàng)建的文檔都是通用格式,則利用基于預設格式的模板的新文檔來開始創(chuàng)建過程會更加容易。與從頭創(chuàng)建文檔相比,將某個模板與 Word 自動化客戶端配合使用有兩大優(yōu)點:
1.您可以對整個文檔中的對象的格式設置和布局施加更多控制。
2.可以使用較少的代碼創(chuàng)建文檔。
通過使用模板,可以精確地調整表格、段落和其他對象在文檔中的布局,并可為這些對象添加格式設置。通過使用自動化功能,可以基于包含下面這樣的代碼的模板創(chuàng)建新文檔: 在模板中,可以定義書簽,這樣,自動化客戶端就可以在文檔的特定位置加入可變文本,如下所示: 使用模板的另一個優(yōu)點在于,您可以創(chuàng)建和存儲希望在運行時應用的格式樣式,如下所示:

object oTemplate = "c:\\MyTemplate.dot";
oDoc = oWord.Documents.Add(ref oTemplate, ref oMissing,
 ref oMissing, ref oMissing);

object oBookMark = "MyBookmark";
oDoc.Bookmarks.Item(ref oBookMark).Range.Text = "Some Text Here";

object oStyleName = "MyStyle";
oDoc.Bookmarks.Item(ref oBookMark).Range.set_Style(ref oStyleName);

object oStyleName = "MyStyle";
oWord.Selection.set_Style(ref oStyleName);

最主要的就是理解word application 的框架層次,其它的就像面向過程編程一樣,一步步寫代碼,其中比較麻煩的是嵌套的表格。

相關文章

  • 采用easyui tree編寫簡單角色權限代碼的方法

    采用easyui tree編寫簡單角色權限代碼的方法

    本文主要介紹了如何采用easyui tree編寫簡單角色權限代碼,文章思路清晰,需要的朋友可以參考下
    2015-07-07
  • C#自定義的方法實現(xiàn)堆棧類設計

    C#自定義的方法實現(xiàn)堆棧類設計

    這篇文章主要為大家詳細介紹了如何使用C#創(chuàng)建一個帶有Push方法和Clist類的CStack類,并如何在其中添加和遍歷堆棧數(shù)據(jù),感興趣的可以了解下
    2024-03-03
  • 詳解c# 切片語法糖

    詳解c# 切片語法糖

    這篇文章主要介紹了c# 切片語法糖的相關資料,幫助大家更好的理解和學習c#,感興趣的朋友可以了解下
    2020-09-09
  • C# httpwebrequest訪問HTTPS錯誤處理方法

    C# httpwebrequest訪問HTTPS錯誤處理方法

    下面小編就為大家?guī)硪黄狢# httpwebrequest訪問HTTPS錯誤處理方法。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2017-01-01
  • C#編程實現(xiàn)簡易圖片瀏覽器的方法

    C#編程實現(xiàn)簡易圖片瀏覽器的方法

    這篇文章主要介紹了C#編程實現(xiàn)簡易圖片瀏覽器的方法,涉及C#基于WinForm操作圖片實現(xiàn)預覽功能的相關技巧,具有一定參考借鑒價值,需要的朋友可以參考下
    2015-11-11
  • C#使用SQL DataReader訪問數(shù)據(jù)的優(yōu)點和實例

    C#使用SQL DataReader訪問數(shù)據(jù)的優(yōu)點和實例

    今天小編就為大家分享一篇關于C#使用SQL DataReader訪問數(shù)據(jù)的優(yōu)點和實例,小編覺得內容挺不錯的,現(xiàn)在分享給大家,具有很好的參考價值,需要的朋友一起跟隨小編來看看吧
    2018-10-10
  • c#閉包使用方法示例

    c#閉包使用方法示例

    這篇文章主要介紹了如何使用C#的閉包功用,例子很簡單,大家參考使用吧
    2013-11-11
  • C#對文件名智能排序的算法

    C#對文件名智能排序的算法

    這篇文章介紹了C#對文件名智能排序的算法,文中通過示例代碼介紹的非常詳細。對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2022-06-06
  • C#針對xml基本操作及保存配置文件應用實例

    C#針對xml基本操作及保存配置文件應用實例

    這篇文章主要介紹了C#針對xml基本操作及保存配置文件應用實例,包括了針對XML文件的定義、初始化、創(chuàng)建、以及增刪改查等基礎操作,并配有詳細的實例加以說明,需要的朋友可以參考下
    2014-10-10
  • 使用C# Winform應用程序獲取網(wǎng)頁源文件的解決方法

    使用C# Winform應用程序獲取網(wǎng)頁源文件的解決方法

    本篇文章是對使用C# Winform應用程序獲取網(wǎng)頁源文件的方法進行了詳細的分析介紹,需要的朋友參考下
    2013-05-05

最新評論