How to move cursor one step backward in QLineEdit in Qt?
Any help is appreciated.
I tried
pLineEdit->cursorBackward(true,1);
but it does not work.
|
How to move cursor one step backward in QLineEdit in Qt? Any help is appreciated. I tried
but it does not work. |
||||
|
If you want to undo you just call undo function. If you want to go one character back you can use cursorBackward. |
|||
|
|
|
Have a look at the docs: http://doc.qt.nokia.com/latest/qlineedit.html#cursorPosition-prop Use |
|||||||||||
|
|
|
|||
|
|
cursorBackward()does not work, then what doescursorPosition()return? – Bart Jul 25 '11 at 10:13