Hi
I have the following code to clone table from first page to second column
Document doc = new Document(@"C:\Documents and Settings\Desktop\TestTable.docx");
Aspose.Words.Tables.Table myTable = doc.FirstSection.Body.Tables[0];
Aspose.Words.Tables.Table myTable1 = doc.FirstSection.Body.Tables[1];
Aspose.Words.Tables.Table tableClone1 = (Aspose.Words.Tables.Table)myTable.Clone(true);
Aspose.Words.Tables.Table tableClone2 = (Aspose.Words.Tables.Table)myTable1.Clone(true);
Section section = new Section(doc);
doc.AppendChild(section);
section.PageSetup.SectionStart = SectionStart.NewPage;
section.PageSetup.Orientation = Aspose.Words.Orientation.Landscape;
section.PageSetup.LeftMargin = doc.FirstSection.PageSetup.LeftMargin;
section.PageSetup.RightMargin = doc.FirstSection.PageSetup.RightMargin;
section.PageSetup.TopMargin = doc.FirstSection.PageSetup.TopMargin;
section.PageSetup.BottomMargin = doc.FirstSection.PageSetup.BottomMargin;
Body body = new Body(doc);
section.AppendChild(body);
body.AppendChild(tableClone1);
body.AppendChild(tableClone2);
doc.Save(@"C:\Documents and Settings\Desktop\TestTableOut.docx");
My issue is like my left align is not working for the second page
Am attaching my Template and out put also
In my out put the table in the second page don't have same left align of the first page table how to make same left align in both page
Regards
Ajeesh M J