I'm using open xml sdk to insert new columns into a table in a template word document, the columns inserted successful, but the columns' width of the table has been shrank. Following is my code:
RegionRepository regionRepo = new RegionRepository();
List<Region> regions = regionRepo.listAll().Where(x => x.RegionID != Constants.REGION_ID_MULTI_REGION).Select(x => x).ToList();
var regionVolumns = from x in regions
join y in oppoVM.RegionShareList on x.RegionID equals y.RegionID
into v
from n in v.DefaultIfEmpty(new OpportunityRegionShare() { RegionShareValue = 0})
select new
{
RegionName = x.ShortName,
ShareVolumn = n.RegionShareValue
};
Table regionVolumnTable = regionVolumnElement.Descendants<Table>().First();
TableRow regionNameRow = regionVolumnTable.Elements<TableRow>().ElementAt(0);
TableRow valueRow = regionVolumnTable.Elements<TableRow>().ElementAt(1);
TableCell nameTemplate = regionNameRow.Elements<TableCell>().ElementAt(2);
TableCell valueTemplate = valueRow.Elements<TableCell>().ElementAt(1);
foreach (var regionVolumn in regionVolumns)
{
TableCell nameCell = nameTemplate.CloneNode(true) as TableCell;
TableCell valueCell = valueTemplate.CloneNode(true) as TableCell;
FillTableCell(nameCell, regionVolumn.RegionName);
regionNameRow.AppendChild(nameCell);
FillTableCell(valueCell, Utilities.DecimalToPercentage(regionVolumn.ShareVolumn.Value));
valueRow.AppendChild(valueCell);
}
nameTemplate.Remove();
valueTemplate.Remove();
My template table has 3 columns and 2 rows. The columns' width are reduced after the new columns are inserted into the template table.
I just want the columns' width as the same as the template table before I insert columns. I want to why the columns' width reduced after insert new columns and Is there any solutions for this issue without set the width of the columns? Any help is much appreciate. Thanks a lot.