Support to display HTML tables in slide table (Java)

The below code is not display table in slides

((IAutoShape) shp).getTextFrame().getParagraphs().addFromHtml(htmlContent);

            </table>
Company Contact Country
Alfreds Futterkiste Maria Anders Germany

@sachinshahi,

I have observed your requirements and like to share that Aspose.Slides only support importing HTML text inside text frame paragraph. There is no provision available in API to import HTML tags and create PowerPoint table for that. You may need to devise your own logic in this regard to make PowerPoint table using Aspose.Slides based on rows or columns inside HTML document. Then for each cell of HTML table, import the text in table cell text frame using the code that you have shared in your post.