PDFExportFlags Enumeration
|
This enumeration represents flags that can be
used for handling the PDF export process.
Namespace: Teigha.Export_Import
Assembly: TD_Mgd (in TD_Mgd.dll) Version:
26.9.0.0
Syntax
public enum PDFExportFlags
Public Enumeration PDFExportFlags
public enum class PDFExportFlags
Members
| Member name |
Value |
Description |
| ZeroFlag |
0 |
All flags are disabled. |
| EmbededTTF |
1 |
Enable embedding of True Type font program to PDF file. The
whole True Type font file will be embedded (huge .pdf size). |
| TTFTextAsGeometry |
2 |
Enable True Type font text to geometry conversion. |
| SHXTextAsGeometry |
4 |
Enable SHX font text to geometry conversion. |
| SimpleGeomOptimization |
8 |
Enable simple geometry optimization (separated segments to one
polyline, Bezier curve control points). |
| EnableLayers |
16 |
If enabled, layer support will be added to .pdf file (1.5
version required). |
| IncludeOffLayers |
32 |
If enabled, invisible layers will be added to .pdf file (1.5
version required). |
| ZoomToExtentsMode |
2,048 |
If enabled, layout geometry will be zoomed to paper size, else
layout settings will be applied. Note: Z2E mode works like Layout
settings: "Plot Area" - "Extents", "Fit to Paper", "Center the
plot" applied to specified paper size and orientation, but some
settings like "Plot lineweight", "Plot style" are still applying
from Layout settings. |
| Default |
2,054 |
Default flag combination. |
See Also