private List <string> GetOptionIdsImpl()
 {
     RCW.IEnumString optionIds = this._speller.Value.OptionIds;
     if (optionIds == null)
     {
         return(null);
     }
     return(optionIds.ToList(false, true));
 }
 public List <string> SuggestImpl(string word)
 {
     RCW.IEnumString enumString = this._speller.Value.Suggest(word);
     if (enumString == null)
     {
         return(null);
     }
     return(enumString.ToList(false, true));
 }
        private List <string> SupportedLanguagesImpl()
        {
            RCW.ISpellCheckerFactory comFactory = this.ComFactory;
            RCW.IEnumString          enumString = (comFactory != null) ? comFactory.SupportedLanguages : null;
            List <string>            result     = null;

            if (enumString != null)
            {
                result = enumString.ToList(true, true);
            }
            return(result);
        }