RtfLoadOptions.RecognizeUtf8Text

RtfLoadOptions RecognizeUtf8Text property. When set to true Wordize will try to detect UTF8 characters they will be preserved during import.

RtfLoadOptions.RecognizeUtf8Text property

When set to true, Wordize will try to detect UTF8 characters, they will be preserved during import.

public bool RecognizeUtf8Text { get; set; }

Remarks

Default value is false.

Examples

Shows how to detect UTF-8 characters while loading an RTF document.

RtfLoadOptions rtfLoadOptions = new RtfLoadOptions();
rtfLoadOptions.RecognizeUtf8Text = true;

Converter.Create()
    .From(MyDir + "UTF-8 characters.rtf", rtfLoadOptions)
    .To(ArtifactsDir + "RtfLoadOptions.RecognizeUtf8Text.docx")
    .Execute();

See Also