
Specifies how the document structure is generated when a PDF document is imported. Adobe PDF format is a low-level output format. In most cases in contains only geometrical information about the single characters. A high-level document structure specifying paragraphs, tables, sections and styles is not available. The TXTextControl PDF import filter can either handle each line of text as a single paragraph or it can generate paragraphs from the text flow. Another mode generates a text frame for each block of text. These frames are placed at the same position as in the PDF document. These features will be enhanced in future TXTextControl versions.
Introduced: 15.0.
[C#]
public PDFImportSettings PDFImportSettings { get; set; }
[Visual Basic]
Public Property PDFImportSettings() As PDFImportSettings
| Value | Description | |
| GenerateLines | Creates a new paragraph for each line of text. | |
| GenerateParagraphs | Generates paragraphs from the text flow. | |
| GenerateTextFrames | A text frame is created for each block of text. The frames are placed at the same position as in the PDF document. |
PDF only.