Spire.Doc for .NET是一款专门对 Word 文档进行操作的 .NET 类库。在于帮助开发人员无需安装 Microsoft Word情况下,轻松快捷高效地创建、编辑、转换和打印 Microsoft Word 文档。拥有近10年专业开发经验Spire系列办公文档开发工具,专注于创建、编辑、转换和打印Word/PDF/Excel等格式文件处理,小巧便捷。
E-iceblue 功能类库Spire 系列文档处理组件均由中国本土团队研发,不依赖第三方软件,不受其他国家的技术或法律法规限制,同时适配国产操作系统如中科方德、中标麒麟等,兼容国产文档处理软件 WPS(如 .wps/.et/.dps 等格式
Spire.Doc for.NET 最新下载(767755948)https://www.evget.com/product/3368/download
替代文本(alt text)可以帮助使用屏幕阅读器的人理解我们表格的内容。本文将演示如何使用 Spire.Doc 在 word 文档中添加或获取表格的替代文本。
在 Spire.Doc 中,我们可以使用 Table.Title 和 Table.TableDescription 属性设置或获取表格的替代文本。以下示例显示如何向表格添加替代文本。
详细步骤:
第 1 步:实例化一个 Document 对象并加载一个 word 文档。
Document doc = new Document(); doc.LoadFromFile("Input.docx");
第 2 步:获取第一部分。
Section section = doc.Sections[0];
第 3 步:获取该部分中的第一个表。
Table table = section.Tables[0] as Table;
第 4 步:向表中添加替代文本。
//Add title table.Title = "Table 1"; //Add description table.TableDescription = "Description Text";
第 5 步:保存文件。
doc.SaveToFile("output.docx", FileFormat.Docx2013);
截图:
完整代码:
using Spire.Doc; namespace Add_Alt_Text_To_Word_Table { class Program { static void Main(string[] args) { //Instantiate a Document object Document doc = new Document(); //Load a word document doc.LoadFromFile("Input.docx"); //Get the first section Section section = doc.Sections[0]; //Get the first table in the section Table table = section.Tables[0] as Table; //Add alt text //Add tile table.Title = "Table 1"; //Add description table.TableDescription = "Description Text"; //Save the document doc.SaveToFile("output.docx", FileFormat.Docx2013); } } }
以上便是如何在 C# 中的 Word 中创建嵌套表格,如果您有其他问题也可以继续浏览本系列文章,获取相关教程,你还可以给我留言或者加入我们的官方技术交流群。