Hello Ikram,
Thank you very much for your help and time. I want to ask you that is it possible to read tables along with table field values from Aspose for .xer files. I tried in following way but it is giving only field names and not values.
<span style=“font-family: “Courier New”, Consolas, Courier, monospace; font-size: small; white-space: pre; background-color: rgb(255, 255, 255);”>Aspose.Tasks.Project objProj = <span class=“kwrd” style=“color: rgb(0, 0, 255); font-family: “Courier New”, Consolas, Courier, monospace; font-size: small; white-space: pre;”>new<span style=“font-family: “Courier New”, Consolas, Courier, monospace; font-size: small; white-space: pre; background-color: rgb(255, 255, 255);”> Aspose.Tasks.Project(@“myfile.xer”);
TableCollection collection = <span style=“font-family: “Courier New”, Consolas, Courier, monospace; font-size: small; white-space: pre; background-color: rgb(255, 255, 255);”>objProj.Tables;
foreach (var table in collection)
{
TableField field = table.TableFields[0];
}
For example my .xer file has data from table named “projweb” and it has field name “wbs_id”. How can I read the same from <span style=“font-family: “Courier New”, Consolas, Courier, monospace; font-size: small; white-space: pre; background-color: rgb(255, 255, 255);”>TableCollection .
Is it possible to read all tables along with all column names and respective values ?
Thanks & Regards,
Kiran