Un-Normalized unicode string!

  • Thread starter Thread starter Özden Irmak
  • Start date Start date
Ö

Özden Irmak

Hello,

I'm writing an application which is used in arabic countries. I use the
normal textbox. My problem is that when I try to get the chars inside the
entered text, I get them in normalized form, not in contextual form. The
text is shown in contextual form in the textbox and when I check the
IsNormalized() method of the text it's always true.

Is it possible to retrieve the text from textbox in contextual form? Or any
possibility to reverse back the automatically normalized string?

Thanks,

Özden
 
I'm writing an application which is used in arabic countries. I use the
normal textbox. My problem is that when I try to get the chars inside the
entered text, I get them in normalized form, not in contextual form. The
text is shown in contextual form in the textbox and when I check the
IsNormalized() method of the text it's always true.
Text is usually stored in non-contextual form. The text renderer takes care
of context.
In fact, contextual form is only included in Unicode for backward
compatibility.
 
Back
Top