Hi Team Telerik,
My Code to list spell Check Suggestions in the Context Menu upon right clicking
on the wrongly added text in the RichTextBox is n't working any more.
Actually what I did is
:-
1. Enabled Richtextbox spell check property.
2) Enabled Richtextbox ContextMenu Enabled Property
3) Read * .tdf file as
stream and load dictionary directly from the tdf stream
Private Sub LoadDictionary(ByVal tdfFileStream As Stream)
Dim dictionary As New RadDictionary()
dictionary.Load(tdfFileStream)
CType(Me.radRichTextBox.SpellChecker, DocumentSpellChecker).AddDictionary(dictionary, CultureInfo.CurrentCulture)
End Sub
RadRichtextBox
property IsContextMenuEnabled is set to True ,but it is not working.
Is there any property to show spell
Check Suggestions apart from customizing the Context menu ?
Will it show the spell Check Suggestions in the Context Menu by adding the
Reference to Telerik.Windows.Documents.Proofing.Dictionaries.En-US.dll
assembly by default ?
Does anyone have any suggestions why this may be?
Thank you for your time,
Lakshmi