如何将网格视图/网格视图内容插入PDF?
我正在使用aspose.pdf生成一个pdf。我的页面有一个gridview.The列号,在我的网格中应该保持不变,但行可能会变化。
如何将网格内容插入到PDF文件中?
发布于 2011-12-14 22:07:34
你必须像这样把它添加到你的段落中:
Aspose.Pdf.Generator.Table tab1 = new Aspose.Pdf.Generator.Table();
sec1.Paragraphs.Add(tab1);您可以向Table添加Row对象等。请在http://www.aspose.com/documentation/.net-components/aspose.pdf-for-.net/aspose-pdf-generator-articles.html上查看ASPOSE PDF在线文档。
祝好运!
https://stackoverflow.com/questions/8505613
复制相似问题