Is the ability to read a table’s alternative text scheduled to be added in the near future? We have an urgency for this feature and need to know if we have to come up with another way.
Thank you.
Is the ability to read a table’s alternative text scheduled to be added in the near future? We have an urgency for this feature and need to know if we have to come up with another way.
Document doc = new Document(MyDir + "in.docx");
//Your code...
//Your code...
Bookmark bm = doc.Range.Bookmarks["table1"];
Table table = (Table)bm.BookmarkStart.GetAncestor(NodeType.Table);
if (table != null)
{
//Your code...
}
Thanks for your response, Tahir.
I’m afraid that still isn’t what we’re asking for.
joe_lopez:
What we need is the ability to read the alt-text (title and description) through a Table's properties.
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.