Beispiel #1
0
    protected void ASPxButton1_Click(object sender, EventArgs e)
    {
        SpellCheckerCachedCustomDictionary dic = Session[ASPxRichEdit1.Settings.SpellChecker.Dictionaries[0].CacheKey] as SpellCheckerCachedCustomDictionary;
        MyCustomDictionary dictionary          = new MyCustomDictionary();

        for (int i = 0; i < dic.WordCount; i++)
        {
            dictionary.AddWord(dic[i]);
        }
        dictionary.SaveAs(dic.DictionaryPath);
    }
Beispiel #2
0
 public APIGatewayProxyResponse FunctionHandler(MyCustomDictionary inputData)
 {
     return(new APIGatewayProxyResponse());
 }