How can I move the cursor to the beginning of the CEikRichTextEditor
| Wed, 2008-01-30 15:37 | |
|
Hello, I created an instance of CEikRichTextEditor. I put some texts into this editor. But the cursor is always at the end of the content. iOutputRichText->HandleTextChangedL(); iOutputRichText->SetCursorPosL(1, ETrue); I use the function SetCursorPosL(), but it seems that it does not work. Please help me. |
|






Forum posts: 49
Maybe change function call order to
iOutputRichText->SetTextL(&output);iOutputRichText->HandleTextChangedL();
iOutputRichText->SetCursorPosL(1, ETrue);