[]
Provides PDF document creation functionality for ActiveReports documents.
public sealed class PdfExport : Component, IComponent, IDisposable, IDocumentExport
| Name | Description |
|---|---|
| PdfExport() | Initializes a new instance of the PdfExport class. |
| Name | Description |
|---|---|
| ConvertMetaToPng | Sets or returns a value indicating whether Windows metafiles are converted to PNG files in the exported PDF document. |
| ExportBookmarks | Sets or returns a value indicating whether bookmarks are exported to the PDF document. |
| FontFallback | Gets or sets a comma-delimited string of font families that will be used to lookup glyphs missing in original font |
| ImageInterpolation | Specifies the images interpolation value |
| ImageQuality | Specifies the quality used for any images that are converted by ActiveReports. Note that if a JPG image is used in the report, it is written directly to PDF without any conversion. Other image formats may incur a conversion, which this value will effect. |
| ImageResolution | Sets or returns the resolution of images converted from metafiles. |
| NeverEmbedFonts | Sets or returns a semicolon-delimited string of values indicating fonts that should not be embedded in a PDF document. |
| Options | Returns an object allowing you to specify viewer preferences and document information options for the exported PDF document. |
| Pagination | Gets or sets the value indicates should pagination be used for resulted PDF document or not |
| PrintPresets | Gets the print presets. |
| Security | Returns a PdfSecurity object for initializing document encryption and security. |
| Signature | Specifies the signature settings for pdf export |
| Version | Sets or returns the version of the PDF format the exported document is saved in. |
| Watermark | Returns an object allowing you to specify watermark settings for the exported PDF document. |
| Name | Description |
|---|---|
| Dispose(bool) | Disposes the engine. |
| Export(SectionDocument, Stream) | Exports the specified document to a PDF stream. |
| Export(SectionDocument, Stream, string) | Exports the specified document. |
| Export(SectionDocument, string) | Exports the specified document to a PDF file. |
| Export(SectionDocument, string, string) | Exports the specified document to a PDF file. |
| ~PdfExport() | Finalizer to make sure we dispose any unmanaged resources. Part of disposable pattern. |