Re: Accessing Alt Text Title & Descriptions in docx tables

Can we accessing alt text title or descriptions in docx tables now?

Hi ZhenLi,

Thanks for your inquiry. Unfortunately, Aspose.Words does not support the requested feature at the moment. However, we had already logged this feature request as WORDSNET-5890 in our issue tracking system. You will be notified via this forum thread once this feature is available.

We apologize for your inconvenience.

The issues you have found earlier (filed as WORDSNET-5890) have been fixed in this Aspose.Words for .NET 18.6 update and this Aspose.Words for Java 18.6 update.

@hezhenli1987

It is to inform you that we added new feature in Aspose.Words 18.6 to access table’s title and description from Alt Text tab of table’s properties. Following code example shows how to get table’s title and description.

Document doc = new Document(MyDir + "input.docx");
Table table = (Table)doc.GetChild(NodeType.Table, 0, true);
Console.WriteLine(table.Title);
Console.WriteLine(table.Description);