解决用Aspose.Words,在word文档中创建表格的实现方法
解决用Aspose.Words,在word文档中创建表格的实现方法
发布时间:2016-12-28 来源:查字典编辑
摘要:代码如下所示:复制代码代码如下://OpendocumentandcreateDocumentbuilderAspose.Words.Doc...

代码如下所示:

复制代码 代码如下:

//Open document and create Documentbuilder

Aspose.Words.Document doc = new Aspose.Words.Document("demo.doc");

DocumentBuilder builder = new DocumentBuilder(doc);

//Set table formating

//Set borders

builder.CellFormat.Borders.LineStyle = LineStyle.Single;

builder.CellFormat.Borders.Color = Color.Red;

//Set left indent

builder.RowFormat.LeftIndent = 100;

// etc...

//Move documentBuilder cursor to the bookmark

builder.MoveToBookmark("myBookmark");

//Insert some table

for (int i = 0; i < 5; i++)

{

for (int j = 0; j < 5; j++)

{

builder.InsertCell();

builder.Write("this is cell");

}

builder.EndRow();

}

builder.EndTable();

//Save output document

doc.Save("demo2.doc");

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新C#教程学习
热门C#教程学习
编程开发子分类