Question
find the text based on language
Hi,
how to find the text based on specific language.. is there any mistake in following code
findParams = AllocatePropVals(2);
findParams[0].propIdent.num = Constants.FS_FindCharFmt;
findParams[0].propVal.valType = Constants.FTF_LANGUAGE;
findParams[0].propVal.sval =Constants.FV_LANG_ENGLISH;
var foundText = doc.Find(tloc, findParams);
