PdfTextConversionOptions.UseBidi Property

Gets or sets a value indicating whether to use the inverse Bidi algorithm for reordering right-to-left and bidirectional text.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public bool UseBidi { get; set; }
VB
Public Property UseBidi As Boolean
	Get
	Set

Property Value

Type: Boolean
true to convert PdfTextData objects to Unicode according to the logical order; false otherwise.

Remarks

Default value: true.

This property only affects text containing right-to-left characters.

PDF documents draw and store text according to the visual order. To properly extract right-to-left and bidirectional text, you need to reorder characters according to the logical order. When this property is equal to true, the library applies the inverse Bidi algorithm to reorder text.

See Also