欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Aspose.Words for .NET HTML代码直接生成WORD

程序员文章站 2022-03-02 12:48:54
...
Document doc = new Document();  
DocumentBuilder builder = new DocumentBuilder(doc);  
   
//builder.MoveToBookmark("experiencetranslation");//如果设置了书签可以直接定位到书签处  
builder.InsertHtml("<table>"                +   
                   "<tr>"                   +  
                   "<td>Row 1, Cell 1</td>" +  
                   "<td>Row 1, Cell 2</td>" +  
                   "</tr>"                  +  
                   "<tr>"                   +   
                   "<td>Row 2, Cell 2</td>" +   
                   "<td>Row 2, Cell 2</td>" +   
                   "</tr>"                  +  
                   "</table>");  
   
 doc.Save(MyDir + "DocumentBuilder.InsertTableFromHtml Out.doc");  
// doc.Range.Bookmarks.Clear();//清除书签  
//  doc.Save(DateTime.Now.ToString("yyyy-MM-dd") + ".doc", SaveFormat.Doc, SaveType.OpenInWord, Response);
//也可以直接保存成PDF格式
//doc.Save(DateTime.Now.ToString("yyyy-MM-dd") + ".doc", SaveFormat.Pdf);







转载于:https://my.oschina.net/Yamazaki/blog/290437