本文介绍了如何从Word文件中找到检测到的语言?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在应用程序中,我可以看到word interop中有一个detectlanguage选项。

 document.DetectLanguage();            
var res = document.LanguageDetected;

在调试时我可以看到观察窗口中的代码   LanguageDetected =
true 



但我无法找到该语言名称。  我遍历每个单词并找到用于该单词的语言


document.Words [i] .LanguageID,每次我得到1033作为id。是否可以获得贬低的语言?


解决方案

In application I can see there is an option for detectlanguage in word interop.

document.DetectLanguage();           
var res = document.LanguageDetected;

while debugging the code from the watch window i can see LanguageDetected= true 

but I am unable to find that language name.  I loop through the each word and find the language used for that word

document.Words[i].LanguageID for every time I got 1033 as id. Is it possible to get the detracted language  or not?

解决方案


这篇关于如何从Word文件中找到检测到的语言?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 08:15