搜集了Microsoft.Office.Interop.Word生產(chǎn)word的一些方法,想整理編寫了一些類庫用于自動(dòng)創(chuàng)建word文檔的。
先將現(xiàn)有的勞動(dòng)成功放在這里。有時(shí)間在加以完善!
一、添加頁眉
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Linq;
- using System.Text;
- using Word = Microsoft.Office.Interop.Word;
- using System.IO;
- using System.Reflection;
- using Microsoft.Office.Interop.Word;
-
-
- namespace WordCreateDLL
- {
- public class AddHeader
- {
- public static void AddSimpleHeader(Application WordApp,string HeaderText)
- {
-
- WordApp.ActiveWindow.View.Type = WdViewType.wdOutlineView;
- WordApp.ActiveWindow.View.SeekView = WdSeekView.wdSeekPrimaryHeader;
- WordApp.ActiveWindow.ActivePane.Selection.InsertAfter(HeaderText);
- WordApp.Selection.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft;
- WordApp.ActiveWindow.View.SeekView = WdSeekView.wdSeekMainDocument;
- }
- public static void AddSimpleHeader(Application WordApp, string HeaderText, WdParagraphAlignment wdAlign)
- {
-
- WordApp.ActiveWindow.View.Type = WdViewType.wdOutlineView;
- WordApp.ActiveWindow.View.SeekView = WdSeekView.wdSeekPrimaryHeader;
- WordApp.ActiveWindow.ActivePane.Selection.InsertAfter(HeaderText);
-
- WordApp.Selection.ParagraphFormat.Alignment = wdAlign;
- WordApp.ActiveWindow.View.SeekView = WdSeekView.wdSeekMainDocument;
- }
- public static void AddSimpleHeader(Application WordApp, string HeaderText, WdParagraphAlignment wdAlign,WdColor fontcolor,float fontsize)
- {
-
- WordApp.ActiveWindow.View.Type = WdViewType.wdOutlineView;
- WordApp.ActiveWindow.View.SeekView = WdSeekView.wdSeekPrimaryHeader;
- WordApp.ActiveWindow.ActivePane.Selection.InsertAfter(HeaderText);
- WordApp.Selection.Font.Color =fontcolor;
- WordApp.Selection.Font.Size = fontsize;
- WordApp.Selection.ParagraphFormat.Alignment = wdAlign;
- WordApp.ActiveWindow.View.SeekView = WdSeekView.wdSeekMainDocument;
- }
-
-
- }
- }
二、插入圖片
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Linq;
- using System.Text;
- using Word = Microsoft.Office.Interop.Word;
- using System.IO;
- using System.Reflection;
- using Microsoft.Office.Interop.Word;
-
- namespace WordCreateDLL
- {
- public class AddPic
- {
- public static void AddSimplePic(Document WordDoc, string FName, float Width, float Height, object An, WdWrapType wdWrapType)
- {
-
- string FileName = @FName;
- object LinkToFile = false;
- object SaveWithDocument = true;
- object Anchor = An;
- WordDoc.Application.ActiveDocument.InlineShapes.AddPicture(FileName, ref LinkToFile, ref SaveWithDocument, ref Anchor);
- WordDoc.Application.ActiveDocument.InlineShapes[1].Width = Width;
- WordDoc.Application.ActiveDocument.InlineShapes[1].Height = Height;
-
- Microsoft.Office.Interop.Word.Shape s = WordDoc.Application.ActiveDocument.InlineShapes[1].ConvertToShape();
- s.WrapFormat.Type = wdWrapType;
- }
-
- }
- }
三、插入表格
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Linq;
- using System.Text;
- using Word = Microsoft.Office.Interop.Word;
- using System.IO;
- using System.Reflection;
- using Microsoft.Office.Interop.Word;
-
- namespace WordCreateDLL
- {
- public class AddTable
- {
- public static void AddSimpleTable(Application WordApp, Document WordDoc, int numrows, int numcolumns, WdLineStyle outStyle, WdLineStyle intStyle)
- {
- Object Nothing = System.Reflection.Missing.Value;
-
- Microsoft.Office.Interop.Word.Table newTable = WordDoc.Tables.Add(WordApp.Selection.Range, numrows, numcolumns, ref Nothing, ref Nothing);
-
- newTable.Borders.OutsideLineStyle = outStyle;
- newTable.Borders.InsideLineStyle = intStyle;
- newTable.Columns[1].Width = 100f;
- newTable.Columns[2].Width = 220f;
- newTable.Columns[3].Width = 105f;
-
-
- newTable.Cell(1, 1).Range.Text = "產(chǎn)品詳細(xì)信息表";
- newTable.Cell(1, 1).Range.Bold = 2;
-
- newTable.Cell(1, 1).Merge(newTable.Cell(1, 3));
- WordApp.Selection.Cells.VerticalAlignment =WdCellVerticalAlignment.wdCellAlignVerticalCenter;
- WordApp.Selection.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphCenter;
-
-
- newTable.Cell(2, 1).Range.Text = "產(chǎn)品基本信息";
- newTable.Cell(2, 1).Range.Font.Color =WdColor.wdColorDarkBlue;
-
- newTable.Cell(2, 1).Merge(newTable.Cell(2, 3));
- WordApp.Selection.Cells.VerticalAlignment =WdCellVerticalAlignment.wdCellAlignVerticalCenter;
-
-
- newTable.Cell(3, 1).Range.Text = "品牌名稱:";
- newTable.Cell(3, 2).Range.Text = "品牌名稱:";
-
- newTable.Cell(3, 3).Select();
- object moveUnit = WdUnits.wdLine;
- object moveCount = 5;
- object moveExtend = WdMovementType.wdExtend;
- WordApp.Selection.MoveDown(ref moveUnit, ref moveCount, ref moveExtend);
- WordApp.Selection.Cells.Merge();
-
-
-
- string FileName = @"C:/1.jpg";
- object Anchor = WordDoc.Application.Selection.Range;
- float Width = 200f;
- float Height = 200f;
-
-
- WdWrapType wdWrapType = Microsoft.Office.Interop.Word.WdWrapType.wdWrapSquare;
- AddPic.AddSimplePic(WordDoc, FileName, Width, Height, Anchor, wdWrapType);
-
- newTable.Cell(12, 1).Range.Text = "產(chǎn)品特殊屬性";
- newTable.Cell(12, 1).Merge(newTable.Cell(12, 3));
-
- WordDoc.Content.Tables[1].Rows.Add(ref Nothing);
- }
-
-
- }
- }
四、插入chart
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Linq;
- using System.Text;
- using Word = Microsoft.Office.Interop.Word;
- using System.IO;
- using System.Reflection;
- using Microsoft.Office.Interop.Word;
- using Microsoft.Office.Interop.Graph;
- using System.Windows.Forms;
- using System.Drawing;
-
-
- namespace WordCreateDLL
- {
- public class AddChart
- {
- public static void AddSimpleChart(Document WordDoc, Word.Application WordApp, Object oEndOfDoc, string [,]data)
- {
-
- object oMissing = System.Reflection.Missing.Value;
- Word.InlineShape oShape;
- object oClassType = "MSGraph.Chart.8";
- Word.Range wrdRng = WordDoc.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);
-
-
-
- object oChart;
- object oChartApp;
- oChart = oShape.OLEFormat.Object;
- oChartApp = oChart.GetType().InvokeMember("Application",BindingFlags.GetProperty, null, oChart, null);
-
-
- object[] Parameters = new Object[1];
- Parameters[0] = 4;
- oChart.GetType().InvokeMember("ChartType", BindingFlags.SetProperty,
- null, oChart, Parameters);
-
-
- Chart objChart = (Chart)oShape.OLEFormat.Object;
- objChart.ChartType = XlChartType.xlColumnClustered;
-
-
- DataSheet dataSheet;
- dataSheet = objChart.Application.DataSheet;
- int rownum=data.GetLength(0);
- int columnnum=data.GetLength(1);
- for(int i=1;i<=rownum;i++ )
- for (int j = 1; j <= columnnum; j++)
- {
- dataSheet.Cells[i,j] =data[i-1,j-1];
-
- }
-
- objChart.Application.Update();
- oChartApp.GetType().InvokeMember("Update",
- BindingFlags.InvokeMethod, null, oChartApp, null);
- oChartApp.GetType().InvokeMember("Quit",
- BindingFlags.InvokeMethod, null, oChartApp, null);
-
-
- oShape.Width = WordApp.InchesToPoints(6.25f);
- oShape.Height = WordApp.InchesToPoints(3.57f);
-
- }
- }
- }
測試程序
- private void button3_Click(object sender, EventArgs e)
- {
-
-
- object oMissing = System.Reflection.Missing.Value;
- object oEndOfDoc = "http://endofdoc";
-
-
- 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);
-
-
- String HeaderText = "石化盈科";
-
- WdParagraphAlignment wdAlign = WdParagraphAlignment.wdAlignParagraphCenter;
- WdColor fontcolor = WdColor.wdColorBlue;
- float fontsize = 10;
-
- AddHeader.AddSimpleHeader(oWord, HeaderText, wdAlign,fontcolor,fontsize);
-
-
- Word.Paragraph oPara1;
- oPara1 = oDoc.Content.Paragraphs.Add(ref oMissing);
- oPara1.Range.Text = "Heading 1";
- oPara1.Range.Font.Bold = 1;
- oPara1.Format.SpaceAfter = 24;
- oPara1.Range.InsertParagraphAfter();
-
-
- 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();
-
-
- 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();
-
- string text = "zhangruichao ";
- WdColor textcolor = fontcolor;
- float textsize = 12;
- AddLine.AddSimpLine(oDoc, oEndOfDoc, oRng, text, textcolor, textsize);
-
-
-
- WdLineStyle OutStyle = WdLineStyle.wdLineStyleThickThinLargeGap;
- WdLineStyle InStyle = WdLineStyle.wdLineStyleSingle;
- AddTable.AddSimpleTable(oWord, oDoc, 12, 3, OutStyle, InStyle);
-
-
- Word.Range wrdRng = oDoc.Bookmarks.get_Item(ref oEndOfDoc).Range;
- 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();
-
-
- string[,] data=new string[4,5];
-
- data[0,1] = "第一月";
- data[0, 2] = "第二月";
- data[0, 3] = "第三月";
- data[0, 4] = "第四月";
-
- data[1,0] = "東部";
- data[1,1] = "50";
- data[1,2] = "50";
- data[1,3] = "40";
- data[1,4] = "50";
-
-
- data[2,0] = "西部";
- data[2,1] = "60";
- data[2,2] = "60";
- data[2,3] = "70";
- data[2,4] = "80";
-
-
- data[3,0] = "中部";
- data[3,1] = "50";
- data[3,2] = "50";
- data[3,3] = "40";
- data[3,4] = "50";
-
-
-
-
- AddChart.AddSimpleChart(oDoc, oWord, oEndOfDoc, data);
-
- wrdRng = oDoc.Bookmarks.get_Item(ref oEndOfDoc).Range;
- wrdRng.InsertParagraphAfter();
- wrdRng.InsertAfter("THE END.");
-
-
- this.Close();
-
- }
|