2013-03-26 49 views
0

使用C#2010我需要打開單詞2010模板,搜索書籤並在其中插入表格。實際上它應該是一個'三部分表格':一行兩列,之後多列五列,最後三列單列。它應該看起來像一張沒有段落或空行的表格。C#2010單詞 - 如何創建沒有空行的表格

我與字自動化經驗是相當有限的。我可以找到示例如何在書籤上創建表格 - 目前爲止沒有問題 - 但是,如何在之前立即添加新表格...

非常感謝您的幫助!

回答

1

這應該可以做到。爲了有不同的列,你不需要多個表; Word允許您有一張表,其中第一行有2列,接下來的3行有5列,最後3行只有1列。 (你沒有說5列需要多少排,所以我只是跟着3)

//Be sure to add this reference: 
//Project>Add Reference>.NET tab>Microsoft.Office.Interop.Word 

//open Word App 
Microsoft.Office.Interop.Word.Application msWord = new Microsoft.Office.Interop.Word.Application(); 

//make it visible or it'll stay running in the background 
msWord.Visible = true; 

//open a new document based on the Word template. 
//You shouldn't open the template directly using msWord.Documents.Open(path) unless you want to edit the template itself. 
Microsoft.Office.Interop.Word.Document wordDoc = msWord.Documents.Add(@"c:\MyTemplate.dotx"); 

//find the bookmark 
string bookmarkName = "BookmarkToFind"; 

if (wordDoc.Bookmarks.Exists(bookmarkName)) 
{ 
    Microsoft.Office.Interop.Word.Bookmark bk = wordDoc.Bookmarks[bookmarkName]; 

    //set the document's range to immediately after the bookmark. 
    //If you want to add the table *into* the bookmark, it needs to be done differently. 
    //This page has a good explanation of the differences between adding to the bookmark's range vs adding after the bookmark's range. 
    //http://gregmaxey.mvps.org/word_tip_pages/insert_text_at_or_in_bookmark.html 
    //It's a little more hassle because you have to re-add the bookmark after inserting into it, 
    //so inserting after the bookmark is usually fine less you're going to be inserting text programmatically at the same bookmark a second time. 
    Microsoft.Office.Interop.Word.Range rng = wordDoc.Range(bk.Range.End, bk.Range.End); 

    //create a table with 8 rows and 5 columns into the range. 
    Microsoft.Office.Interop.Word.Table tbl = wordDoc.Tables.Add(rng, 8, 5); 

    //set the table's borders. 
    tbl.Borders.InsideLineStyle = Microsoft.Office.Interop.Word.WdLineStyle.wdLineStyleSingle; 
    tbl.Borders.OutsideLineStyle = Microsoft.Office.Interop.Word.WdLineStyle.wdLineStyleSingle; 

    //merge the cells in the first row down to 2 columns (Word's cells start at 1, not at 0). 
    tbl.Cell(1, 1).Merge(tbl.Cell(1, 3)); 

    //distribute the columns evenly 
    tbl.Rows[1].Select(); 
    msWord.Selection.Cells.DistributeWidth(); 

    //rows 2-5 already have 5 columns so don't touch them. 

    //merge rows 6-8 into single-columns rows. 
    for (int x = 6; x < 9; x++) 
    { 
     tbl.Cell(x,1).Merge(tbl.Cell(x,5)); 
    } 

    //put the cursor in the table's first cell. 
    rng=wordDoc.Range(tbl.Cell(1,1).Range.Start, tbl.Cell(1,1).Range.Start); 
    rng.Select(); 
+0

這正是我所期待的。完善。非常感謝! – Nepo 2013-03-27 08:28:02

相關問題