Hi I try to make a editor using richtext
The problem is how to get the text that I has input?
What method should I use?
O yeah I also want to change the text color and height (text that i input)
Any example or code that i can learn ?
thx a lot
Hi I try to make a editor using richtext
The problem is how to get the text that I has input?
What method should I use?
O yeah I also want to change the text color and height (text that i input)
Any example or code that i can learn ?
thx a lot
you can get the text using "RichText()" Gets a pointer to the rich text object owned by the editor.(SDK)
and for editor example you can download it from here
http://www.forum.nokia.com/info/sw.n..._2_en.zip.html
R u talking about CRichText, right??? I never used CRichText , but u can check CRichText::GetChars() method to get inputs. Also check following page to formatt text of CRichText.
http://www.symbian.com/Developer/tec...ext.guide.html
Ah already solve the problem
I used GetText() method and it work.
TBuf<256> text;
iEditor->GetText(text);