PdfRecognitionMode

PdfRecognitionMode class

Allows to control how a PDF document is converted into a word processing document.

public sealed class PdfRecognitionMode : Enumeration

Constructors

Name Description
PdfRecognitionMode() Serialization constructor

Methods

Name Description
CompareTo(object) Compares current object to other.
virtual Equals(Enumeration) Determines whether two object instances are equal.
override Equals(object) Determines whether two object instances are equal.
override GetHashCode() Serves as the default hash function.
override ToString() Returns a string that represents the current object.

Fields

Name Description
static readonly Flow Full recognition mode, the engine performs grouping and multi-level analysis to restore the original document author’s intent and produce a maximally editable document. The downside is that the output document might look different from the original PDF file.
static readonly Textbox This mode is fast and good for maximally preserving original look of the PDF file, but editability of the resulting document could be limited. Every visually grouped block of text int the original PDF file is converted into a textbox in the resulting document. This achieves maximal resemblance of the output document to the original PDF file. The output document will look good, but it will consist entirely of textboxes and it could makes further editing of the document in Microsoft Word quite hard. This is the default mode.

See Also