您的位置:首页 > 其它

如何运用Essential Reporting处理PDF文章对象

2012-11-05 15:38 197 查看
原文来自:http://www.evget.com/zh-CN/Info/catalog/17327.html

Essential studio reporting Edition控件中的Essential PDF组件是一个能从您的数据中产生Adobe PDF文件 的.NET库。它具有一个成熟的对象模型,允许用任何.NET语言来轻松地创建PDF文件。它不依赖于任何外部条件。能够很轻松的处理PDF文件对象。

你可以通过使用Close方法处理Pdf对象。注意,如果没有关闭这个对象,就不能为任何其他操作再次使用相同的文档。

Close方法释放常用的内存。其过载参数设置为true[Close(true)],释放整个文档流,它就可以被重复利用。

[C#]

// Release the common resources.

pdfDoc.Close();

// (or)

// Releases document stream. This releases the entire document.

PdfDoc.Close(true);

[VB.NET]

' Release the common resources.

pdfDoc.Close()

' (or)

' Releases document stream. This releases the entire document.

PdfDoc.Close(True)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: