New to Telerik UI for WinFormsStart a free 30-day trial

Describes how the caret is moved within the document.

Definition

Namespace:Telerik.WinForms.Documents

Assembly:Telerik.WinControls.RichTextEditor.dll

Syntax:

C#
public enum MoveCaretDirections

Fields

Move to document end.

C#
DocumentEnd = 12

Move to document start.

C#
DocumentStart = 11

Move down.

C#
Down = 3

Move to current line end.

C#
End = 7

Move to current line start.

C#
Home = 6

Move to the next position.

C#
Next = 1

Move to next paragraph start.

C#
NextParagraph = 10

Move to the beginning of the next word.

C#
NextWord = 4

The one screen down.

C#
PageDown = 14

Move one screen up.

C#
PageUp = 13

Move to current paragraph end.

C#
ParagraphEnd = 9

Move to current paragraph start, or, if currently at the beginning, to the previous paragarph start.

C#
ParagraphStart = 8

Move to the previous position.

C#
Previous = 0

Move to current word start, or, if currently at the beginning, to the previous word start.

C#
PreviousWord = 5

Move to the beginning of the line or cell.

C#
TabBackward = 16

The direction is not know at this point

C#
Unknown = 15

Move up.

C#
Up = 2