Programmming Overview > Mouse and Keyboard Assignment
| Key Type | Reaction of Text Control | |
| HOME | Moves the caret to the beginning of the line. | |
| END | Moves the caret to the end of the line. | |
| (Left Arrow) | Moves the caret one character to the left. | |
| (Right Arrow) | Moves the caret one character to the right. | |
| (Up Arrow) | Moves the caret one line up. | |
| (Down Arrow) | Moves the caret one line down. | |
| CTRL+(Left Arrow) | Moves the caret to the beginning of the current word. | |
| CTRL+(Right Arrow) | Moves the caret to the beginning of the next word. | |
| CTRL+HOME | Moves the caret to start of text. | |
| CTRL+END | Moves the caret to end of text. | |
| CTRL + ENTER | Inserts a new page. | |
| SHIFT + ENTER | Creates a line feed without beginning a new paragraph. | |
| CTRL + (-) | Inserts an end-of-line hyphen. | |
| DEL | Deletes selected text. | |
| CTRL + X | Copies selected text to the Clipboard and deletes the selection. | |
| CTRL + V | Copies selected text to the clipboard. | |
| CTRL + Z | Undos the last action. | |
| CTRL + Y | Restores the last action. | |
| CTRL + SHIFT + (Spacebar) | Inserts a non-breaking space. | |
| CTRL +(Backspace) | Deletes the previous word. | |
| SHIFT +(Backspace) | Deletes the previous word. | |
| CTRL + SHIFT + ENTER | Inserts a page column break. |
Pressing a key while SHIFT is pressed extends the current selection to the new caret position.
<< Mouse Assignment | >> Additional Mouse and Keyboard Assignment in Tables