Aspose.Word 的基礎類型是Node, 並無像Spire.Doc 那樣 有直接的頁對象。 因此要經過 Aspose.Words.Layout.LayoutCollector 佈局收集器,來定位頁面。
官方api https://apireference.aspose.com/words/net/aspose.words.layout/layoutcollectornode
如下代碼 是實現了 在跨頁表格的最後一行添加 接下頁的。 主要找頁的代碼 如紅色部分。api
1 Aspose.Words.Section section = doc.Sections[1]; 2 Aspose.Words.Tables.Table tableb = section.GetChild(NodeType.Table, 1, true) as Aspose.Words.Tables.Table; 3 int pageCount = doc.PageCount; 4 LayoutCollector layoutCollector = new LayoutCollector(doc); 5 6 List<int> rowIndexs = new List<int>(); 7 int pageindex = 3; 8 doc.UpdatePageLayout(); 9 NodeCollection nodes = tableb.GetChildNodes(NodeType.Row, true); 10 for (int i = 0; i < nodes.Count; i++) 11 { 12 Node tmpNode = nodes[i]; 13 int numPage = layoutCollector.GetStartPageIndex(tmpNode); 14 //若是找到指定頁 15 if (numPage == pageindex + 1) 16 {
//將畫筆移動到該頁
tmpbuilder.MoveTo(tmpNode); 17 if (pageindex + 1 > pageCount) 18 { 19 break; 20 } 21 else 22 { pageindex++; rowIndexs.Add(i - 1); } 23 } 24 25 } 26 27 Aspose.Words.Tables.Row templateRow = tableb.LastRow.Clone(true) as Aspose.Words.Tables.Row; 28 templateRow.FirstCell.Paragraphs.RemoveAt(templateRow.FirstCell.Paragraphs.Count - 1); 29 Run run = new Run(doc, "(接下頁)"); 30 Aspose.Words.Paragraph paragraph = new Aspose.Words.Paragraph(doc); 31 paragraph.Runs.Add(run); 32 templateRow.FirstCell.Paragraphs.Add(paragraph); 33 //2.2 添加接下頁的 行 34 foreach (var index in rowIndexs) 35 { 36 tableb.Rows.Insert(index, templateRow.Clone(true)); 37 }
另外發現,aspose.word 沒有辦法插入浮動位置的文本框,只能經過插入圖片(tmpbuilder.InsertImage)來實現,也有多是我沒有找到哈。佈局
以上純屬我的總結,若有不正確的地方,歡迎你們指出。ui