Enum CaretMovement
Specifies a caret movement operation within laid-out text.
public enum CaretMovement
Fields
LineDown = 9Move to the next visual line.
LineEnd = 5Move to the end of the current line.
LineStart = 4Move to the start of the current line.
LineUp = 8Move to the previous visual line.
Next = 1Move to the next grapheme insertion position.
NextWord = 3Move to the next Unicode word boundary.
Previous = 0Move to the previous grapheme insertion position.
PreviousWord = 2Move to the previous Unicode word boundary.
TextEnd = 7Move to the end of the laid-out text.
TextStart = 6Move to the start of the laid-out text.