Aspose Words使用 DocumentBuilder插入各种元素到Word里.doc

Aspose Words使用 DocumentBuilder插入各种元素到Word里.doc

ID:56785408

大小:18.50 KB

页数:11页

时间:2020-07-11

Aspose Words使用 DocumentBuilder插入各种元素到Word里.doc_第1页
Aspose Words使用 DocumentBuilder插入各种元素到Word里.doc_第2页
Aspose Words使用 DocumentBuilder插入各种元素到Word里.doc_第3页
Aspose Words使用 DocumentBuilder插入各种元素到Word里.doc_第4页
Aspose Words使用 DocumentBuilder插入各种元素到Word里.doc_第5页
资源描述:

《Aspose Words使用 DocumentBuilder插入各种元素到Word里.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、AsposeWords使用DocumentBuilder插入各种元素到Word里对于新创建的或者是已有的Word文档,开发人员可以利用AsposeWords提供的DocumentBuilder为Word插入文本、段落、表格、分段、图片、书签、字段、超链接等,具体可以查看下面的事例代码:1.使用DocumentBuilder为Word插入文本DocumentBuilderbuilder=newDocumentBuilder();//Specifyfontformattingbeforeaddingtext.Aspose.Words.Fontfo

2、nt=builder.Font;font.Size=16;font.Bold=true;font.Color=Color.Blue;font.Name="Arial";font.Underline=Underline.Dash;builder.Write("Sampletext.");2.为Word插入一个段落Documentdoc=newDocument();DocumentBuilderbuilder=newDocumentBuilder(doc);//SpecifyfontformattingAspose.Words.Fontfont=

3、builder.Font;font.Size=16;font.Bold=true;font.Color=System.Drawing.Color.Blue;font.Name="Arial";font.Underline=Underline.Dash;//SpecifyparagraphformattingParagraphFormatparagraphFormat=builder.ParagraphFormat;paragraphFormat.FirstLineIndent=8;paragraphFormat.Alignment=Parag

4、raphAlignment.Justify;paragraphFormat.KeepTogether=true;builder.Writeln("Awholeparagraph.");3.使用AsposeWord为Word插入一个表格Documentdoc=newDocument();DocumentBuilderbuilder=newDocumentBuilder(doc);Tabletable=builder.StartTable();//Insertacellbuilder.InsertCell();//Usefixedcolumnwi

5、dths.table.AutoFit(AutoFitBehavior.FixedColumnWidths);builder.CellFormat.VerticalAlignment=CellVerticalAlignment.Center;builder.Write("Thisisrow1cell1");//Insertacellbuilder.InsertCell();builder.Write("Thisisrow1cell2");builder.EndRow();//Insertacellbuilder.InsertCell();//A

6、pplynewrowformattingbuilder.RowFormat.Height=100;builder.RowFormat.HeightRule=HeightRule.Exactly;builder.CellFormat.Orientation=TextOrientation.Upward;builder.Writeln("Thisisrow2cell1");//Insertacellbuilder.InsertCell();builder.CellFormat.Orientation=TextOrientation.Downwar

7、d;builder.Writeln("Thisisrow2cell2");builder.EndRow();builder.EndTable();4.使用AsposeWord为Word插入分页符Documentdoc=newDocument();DocumentBuilderbuilder=newDocumentBuilder(doc);builder.Writeln("Thisispage1.");builder.InsertBreak(BreakType.PageBreak);builder.Writeln("Thisispage2.")

8、;builder.InsertBreak(BreakType.PageBreak);builder.Writeln("Thisispage3.");5.使用Aspo

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。