没有找到合适的产品?
联系客服协助选型:023-68661681
提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
原创|行业资讯|编辑:胡涛|2024-08-12 10:53:04.080|阅读 68 次
概述:本文通过代码示例展示了在DOCX文件中创建表格的各种方法,欢迎查阅~
# 界面/图表报表/文档/IDE等千款热门软控件火热销售中 >>
相关链接:
Word 文档中的表格是一种强大的工具,可用于以清晰、结构化的格式组织和呈现数据。表格由行和列组成,行和列相交形成可包含文本、数字、图像或其他元素的单元格。在本文中,我们将学习如何使用 C# 以编程方式在 Word 文档中创建表格。本文通过代码示例展示了在DOCX文件中创建表格的各种方法。
Aspose.Words 是一种高级Word文档处理API,用于执行各种文档管理和操作任务。API支持生成,修改,转换,呈现和打印文档,而无需在跨平台应用程序中直接使用Microsoft Word。
Aspose API支持流行文件格式处理,并允许将各类文档导出或转换为固定布局文件格式和最常用的图像/多媒体格式。
Aspose.words for.net下载 Aspose.words for for java下载
为了处理 Word 文档中的表格,我们将使用Aspose.Words for .NET库。这是一个强大的库,可让您直接在 .NET 应用程序中以编程方式动态创建和操作 Word 文档。
请使用以下命令下载 DLL或从NuGet安装它:
PM> Install-Package Aspose.Words
有两种方法可以使用 Aspose.Words for .NET 在 Word 文档中创建表格:
您可以选择最适合您需求的方法。让我们详细探讨每种方法。
使用 DocumentBuilder 创建表
DocumentBuilder类可以高效、轻松地从头开始创建动态文档或修改现有文档。借助其全面的功能,我们可以无缝插入各种内容元素,包括文本、复选框、OLE 对象、段落、列表、表格、图像等等。
请按照以下步骤使用 DocumentBuilder 类在 Word 文档中创建表格。
以下代码示例展示如何使用 C# 在 Word 文档中创建表格。
// This code example demonstrates how to create a table in a Word document using C# Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); // Start building the table. builder.StartTable(); builder.InsertCell(); builder.Write("Row 1, Cell 1 Content."); // Build the second cell. builder.InsertCell(); builder.Write("Row 1, Cell 2 Content."); // Call the following method to end the row and start a new row. builder.EndRow(); // Build the first cell of the second row. builder.InsertCell(); builder.Write("Row 2, Cell 1 Content"); // Build the second cell. builder.InsertCell(); builder.Write("Row 2, Cell 2 Content."); builder.EndRow(); // Signal that we have finished building the table. builder.EndTable(); doc.Save("CreateSimpleTable.docx");
使用文档对象模型 (DOM) 创建表格
文档对象模型 (DOM)是Word 文档的内存表示形式。它允许通过编程方式读取、操作和修改 Word 文档的内容和格式。
请按照以下步骤使用 DOM 在 Word 文档中创建表格。
以下代码示例展示如何使用 C# 在 Word 文档中创建表格。
// This code example demonstrates how to create a table in a Word document using DOM in C# Document doc = new Document(); // We start by creating the table object. Note that we must pass the document object // to the constructor of each node. This is because every node we create must belong // to some document. Table table = new Table(doc); doc.FirstSection.Body.AppendChild(table); // Here we could call EnsureMinimum to create the rows and cells for us. This method is used // to ensure that the specified node is valid. In this case, a valid table should have at least one Row and one cell. // Instead, we will handle creating the row and table ourselves. // This would be the best way to do this if we were creating a table inside an algorithm. Row row = new Row(doc); row.RowFormat.AllowBreakAcrossPages = true; table.AppendChild(row); // We can now apply any auto fit settings. table.AutoFit(AutoFitBehavior.FixedColumnWidths); Cell cell = new Cell(doc); cell.CellFormat.Shading.BackgroundPatternColor = Color.LightBlue; cell.CellFormat.Width = 80; cell.AppendChild(new Paragraph(doc)); cell.FirstParagraph.AppendChild(new Run(doc, "Row 1, Cell 1 Text")); // Append a cell row.AppendChild(cell); // We would then repeat the process for the other cells and rows in the table. // We can also speed things up by cloning existing cells and rows. row.AppendChild(cell.Clone(false)); row.LastCell.AppendChild(new Paragraph(doc)); row.LastCell.FirstParagraph.AppendChild(new Run(doc, "Row 1, Cell 2 Text")); // Save the document doc.Save("InsertTableDirectly.docx");
我们还可以在表格的单元格内创建新表格。以下是在 Word 文档中创建嵌套表格的步骤。
以下代码示例展示如何使用 C# 在 Word 文档中创建嵌套表格。
// This code example demonstrates how to create a nested table in a Word document using C# Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); Cell cell = builder.InsertCell(); builder.Writeln("Outer Table Cell 1"); builder.InsertCell(); builder.Writeln("Outer Table Cell 2"); // This call is important to create a nested table within the first table. // Without this call, the cells inserted below will be appended to the outer table. builder.EndTable(); // Move to the first cell of the outer table. builder.MoveTo(cell.FirstParagraph); // Build the inner table. builder.InsertCell(); builder.Writeln("Inner Table Cell 1"); builder.InsertCell(); builder.Writeln("Inner Table Cell 2"); builder.EndTable(); // Save the document doc.Save("NestedTable.docx");
我们可以按照以下步骤克隆Word文档中现有的表格:
以下代码示例展示如何使用 C# 克隆 Word 文档中的表格。
// This code example demonstrates how to clone an existing table in a Word document using C# Document doc = new Document("Tables.docx"); Table table = (Table) doc.GetChild(NodeType.Table, 0, true); // Clone the table and insert it into the document after the original. Table tableClone = (Table) table.Clone(true); table.ParentNode.InsertAfter(tableClone, table); // Insert an empty paragraph between the two tables, // or else they will be combined into one upon saving this has to do with document validation. table.ParentNode.InsertAfter(new Paragraph(doc), table); doc.Save("CloneCompleteTable.docx");
我们还可以按照以下步骤使用 HTML 字符串在 Word 文档中创建表格:
以下代码示例显示如何使用 C# 在 Word 文档中插入 HTML 表格。
// This code example demonstrates how to insert an HTML table in a Word document using C# Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); // Note that AutoFitSettings does not apply to tables inserted from HTML. 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("InsertTableFromHtml.docx");
在本文中,我们学习了如何使用 C# 在 Word 文档中创建表格。我们探索了使用 C# 以编程方式创建表格的各种方法。我们还了解了如何创建嵌套表格或动态克隆 Word 文档中的现有表格。
欢迎下载|体验更多Aspose产品
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@evget.com
面对UI测试脚本散落、执行结果追溯困难、团队协作效率低下等问题,技术管理者面临的不仅是工具层面的挑战,更是工程效能的关键瓶颈。本文深度解析如何通过将自动化测试工具TestComplete与测试管理平台Zephyr Enterprise进行深度集成,构建端到端的UI测试管控体系,有效实现质量左移并大幅提升部署信心。
企业在应对复杂业务和庞大系统时,常面临业务需求传递不清、软件设计维护困难、以及跨团队协作验证滞后三大痛点。企业建模工具Sparx EA提供三大核心技巧解决这些问题:业务层锚定确保用标准图表清晰表达需求;软件设计与可视化让系统结构一目了然并支持代码反推模型;系统层验证支持早期模拟检查降低风险。
近日,AG Grid 正式发布 34.1 版本,本次更新以“提升开发者生产力、简化测试流程、增强布局与样式控制”为核心目标,带来了多项实用功能与体验优化。
金融行业的支付、清算和核心账务系统,承载着海量用户的实时交易和高并发访问。TestComplete的并行测试方案正在重新定义质量保障的标准,从千人并发模拟到跨浏览器验证,再到持续集成下的自动化回归,这套完整的测试体系使金融系统实现了从"被动防御故障"到"主动保障质量"的转变。
专业的电子表格控件,无需MS Excel也可满足一切Excel表格功能。
Aspose.Words for .NET无需Microsoft Word也可在任何平台上满足Word文档的一切操作需求。
Aspose.PDF for .NETPDF文档创建组件,无需Adobe Acrobat,也可以在任何平台上操作PDF文档。
服务电话
重庆/ 023-68661681
华东/ 13452821722
华南/ 18100878085
华北/ 17347785263
客户支持
技术支持咨询服务
服务热线:400-700-1020
邮箱:sales@evget.com
关注我们
地址 : 重庆市九龙坡区火炬大道69号6幢
慧都科技 版权所有 Copyright 2003-
2025 渝ICP备12000582号-13 渝公网安备
50010702500608号