Convert XML into Table in Word Document

I am trying to convert a xml file into a table in Word Document(.doc/.docx), is this possible with aspose word?

@WENDYTEE,

You can read XML into a DataSet object (dataSet.ReadXml("some.xml");) and then for each Table’s row, populate Rows of Aspose.Words’ Table object.

Introduction and Creating Tables