Hi,
We product a report that generates Word Tables. Programmatically, the tables are created using the MailMerge.ExecuteWithRegions method passing a DataTable argument. The DataTable is created dynamically because the number of columns in the generated Word Table is only known at run time. I didn't write the original code, but from what I can see there is a Word document with a table that contains a single column. It looks to me as if Aspose.Words modifies that single-column table to match the number of columns in the DataTable.
All of the above works beautifully. I want to make what I assume is a simple change which is to right-align the the columns containing numeric data. The first column which is always a description column should continue to be left-align. At the moment the numeric data is centered-aligned.
I don't see any code controlling the current alignment. The code creates a DataTable and then simply makes a method call of Document.MailMerge.ExecuteWithRegions(dataTable). So, I assume the current alignment is some default behavior. How can I control the cell alignment utilized for each column in the DataTable during the ExecuteWithRegions Merge operation?
I've attached a sample document showing (1) what a current table looks like presently (2) how we would like to change it and (3) the original table from our source document that is the target for the merge operation.
Thanks in advance for your help.
Ed