DocSaveOptions.RecognitionMode

Inheritance: java.lang.Object, java.lang.Enum < DocSaveOptions.RecognitionMode > com.aspose.pdf.DocSaveOptions.RecognitionMode, java.lang.Enum < DocSaveOptions.RecognitionMode >, com.aspose.pdf.DocSaveOptions.RecognitionMode

All Implemented Interfaces: Serializable, Comparable < DocSaveOptions.RecognitionMode >

public static enum DocSaveOptions.RecognitionMode extends Enum < DocSaveOptions.RecognitionMode >

Allows to control how a PDF document is converted into a word processing document. Use the RecognitionMode.Textbox mode when the resulting document is not goining to be heavily edited futher. Textboxes are easy to modify when there is not a lot to do. Use the RecognitionMode.Flow mode when the output document needs further editing. Paragraphs and texlines in the flow mode allow easy modification of text, but unupported formatting objects will look worse than in the RecognitionMode.Textbox mode.

Fields

FieldDescription
EnhancedFlowAn alternative Flow mode that supports the recognition of tables.
FlowFull recognition mode, the engine performs grouping and multi-level analysis to restore the original document author’s intent and produce a maximally editable document.
TextboxThis mode is fast and good for maximally preserving original look of the PDF file, but editability of the resulting document could be limited.

Methods

MethodDescription
getByValue
getValue
valueOfReturns the enum constant of this type with the specified name.
valuesReturns an array containing the constants of this enum type, in the order they are declared.

EnhancedFlow

public static final DocSaveOptions.RecognitionMode EnhancedFlow

An alternative Flow mode that supports the recognition of tables.

Flow

public static final DocSaveOptions.RecognitionMode 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.

Textbox

public static final DocSaveOptions.RecognitionMode 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.

getByValue

public static DocSaveOptions.RecognitionMode getByValue(int value)

getValue

public int getValue()

valueOf

Returns the enum constant of this type with the specified name.

values

public static DocSaveOptions.RecognitionMode [] values()

Returns an array containing the constants of this enum type, in the order they are declared.

Returns: an array containing the constants of this enum type, in the order they are declared