[]
Options used for saving a GcWordLayout in PDF format.
public class PdfOutputSettings
Public Class PdfOutputSettings
| Name | Description |
|---|---|
| PdfOutputSettings() |
| Name | Description |
|---|---|
| BackColor | Gets or sets the background color. The default is white. |
| CompressionLevel | Gets or sets the compression level. The default value is Optimal. |
| ConformanceLevel | Gets or sets the PDF/A conformance level for the exported document. The default value is GrapeCity.Documents.Pdf.PdfAConformanceLevel.None. |
| DocumentInfo | Gets or sets a GrapeCity.Documents.Pdf.DocumentInfo object containing information about the document (author, title, etc). See GrapeCity.Documents.Pdf.GcPdfDocument.DocumentInfo for details. |
| ExportStructureTags | Gets or sets whether logical structure information is included when exporting the document to PDF. When enabled, the exported document contains structure tags (a structure tree), producing a tagged PDF that improves accessibility and navigation for screen readers and other assistive technologies. The default value is false. |
| ImageOptions | Gets or sets an GrapeCity.Documents.Pdf.ImageOptions object that contains options controlling how images are processed in the generated PDF. See GrapeCity.Documents.Pdf.GcPdfDocument.ImageOptions for details. |
| Linearized | Gets or sets a value indicating whether the generated PDF should be saved as linearized. See GrapeCity.Documents.Pdf.GcPdfDocument.Linearized for details. |
| MarkAsPdfUa | Gets or sets whether the exported PDF document should be marked as PDF/UA compliant. The default value is false. |
| MarkupTemplateTags | Gets or sets a method to be executed for each PDF page during export, allowing custom markup to be added to template tags on the page. |
| Metadata | Gets or sets a metadata object associated with the generated PDF. See GrapeCity.Documents.Pdf.GcPdfDocument.Metadata for details. |
| MissingDocumentTitle | Gets or sets the placeholder used as the document title for accessible PDF export if Title has not been set when exporting the document to PDF. |
| MissingHyperlinkScreenTip | Gets or sets the placeholder used as annotation content for accessible PDF export if ScreenTip has not been set when exporting the document to PDF. |
| MissingShapeAlternativeText | Gets or sets the placeholder used as alternative text for accessible PDF export if AlternativeText has not been set when exporting the document to PDF. |
| PdfVersion | Gets or sets the PDF Version of the generated document. See GrapeCity.Documents.Pdf.GcPdfDocument.PdfVersion for details. By default the version is determined automatically based on which features are used in this document. Setting this property to a non-null string in the format "1.X" (where X is a digit from 0 to 9) overrides the automatic value with the specified one. |
| SecurityHandler | Gets or sets an instance of a class derived from GrapeCity.Documents.Pdf.Security.SecurityHandlerBase used to encrypt the PDF. Use the CreateSecurityHandler(string) method to initialize this property or create and assign the handler directly. For example, the following code may be used to password protect the PDF:
|
| Name | Description |
|---|---|
| CreateSecurityHandler(string) | Creates an instance of GrapeCity.Documents.Pdf.Security.StandardSecurityHandlerRev6 and assigns it to SecurityHandler. |