Save

Save(string, SaveFormat, bool, SpellCheckLanguage, string, string)

Saves the document as the plain text, PDF or Microsoft Word Document.

public void Save(string fullFileName, SaveFormat saveFormat, bool applySpellingCorrection, 
    SpellCheckLanguage language = SpellCheckLanguage.Eng, string dictionaryPath = null, 
    string embeddedFontPath = null)
ParameterTypeDescription
fullFileNameStringFilename with a path for saving recognition result in the selected format.
saveFormatSaveFormatDocument format (Docx, Txt, Pdf, Xlsx, Rtf, Json, Xml).
applySpellingCorrectionBooleanSet true to correct misspelled words in case you have such in your recognition result.
languageSpellCheckLanguageDictionary for spell check (optional).
dictionaryPathStringOptionally. Full path to the user dictionary in .txt format. Format is [word - space - frequence(number)]. Example: the 23135851162\nthat 3400031103\n
embeddedFontPathStringOptionally. Full path to the user font.

See Also


Save(string, SaveFormat, string)

Saves the document as the plain text, PDF or Microsoft Word Document.

public void Save(string fullFileName, SaveFormat saveFormat, string embeddedFontPath = null)
ParameterTypeDescription
fullFileNameStringFilename with a path for saving recognition result in the selected format.
saveFormatSaveFormatDocument format (Docx, Txt, Pdf, Xlsx, Rtf, Json, Xml).
embeddedFontPathStringOptionally. Full path to the user font.

See Also


Save(MemoryStream, SaveFormat, bool, SpellCheckLanguage, string, string)

Saves the document as the plain text, PDF or Microsoft Word Document.

public void Save(MemoryStream stream, SaveFormat saveFormat, bool applySpellingCorrection, 
    SpellCheckLanguage language = SpellCheckLanguage.Eng, string dictionaryPath = null, 
    string embeddedFontPath = null)
ParameterTypeDescription
streamMemoryStreamMemoryStream for saving recognition result in the selected format.
saveFormatSaveFormatDocument format (Docx, Txt, Pdf).
applySpellingCorrectionBooleanSet true to correct misspelled words in case you have such in your recognition result.
languageSpellCheckLanguageDictionary for spell check (optional).
dictionaryPathStringOptionally. Full path to the user dictionary in .txt format. Format is [word - space - frequence(number)]. Example: the 23135851162\nthat 3400031103\n
embeddedFontPathStringOptionally. Full path to the user font.

See Also


Save(MemoryStream, SaveFormat, string)

Saves the document as the plain text, PDF or Microsoft Word Document.

public void Save(MemoryStream stream, SaveFormat saveFormat, string embeddedFontPath = null)
ParameterTypeDescription
streamMemoryStreamMemoryStream for saving recognition result in the selected format.
saveFormatSaveFormatDocument format (Docx, Txt, Pdf).
embeddedFontPathStringOptionally. Full path to the user font.

See Also