Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在我的固定文档中循环插入动态页面
FixedPage page1 = new FixedPage();
但是在第一页之后它给出的错误内容已经是另一个控件的子控件。您能指导我如何将页面添加到您的固定文档。如何制作页面数组?
确保FixedPage page1 = new FixedPage();在每个循环开始时执行该行,否则 page1 将始终指向同一页面,并且您将尝试多次将同一页面插入到文档中。
您的代码应如下所示
while( looping ) { FixedPage page1 = new FixedPage(); myFixedDocument.Pages.Add(page1); }
在将变量重新分配给新的 FixedPage 之前,您不应该再次将 page1 添加到任何内容。