I am facing the following problem in radRichTextBox of winform that works fine in .net RichTextBox control.
1.radRichTextBox has no SelectionStart property that i need .
2. In keypress event e.KeyChar does not work.
private void radRichTextBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 122)
{
char c= (char)0x0995;
e.KeyChar = c;
e.Handled = false;
}
}
here do not override the value.
3. e.Handled = true;
does not work