Enum Move
Lists different types of selection moves that can be executed through the Move(Move, Boolean) operation.
Namespace: Sdl.DesktopEditor.EditorApi
Assembly: Sdl.DesktopEditor.EditorApi.dll
Syntax
public enum Move
Fields
| Name | Description |
|---|---|
| EndOfDocument | The logical end of the document. |
| EndOfLine | The logical end of the current line. |
| EndOfSegment | The logical end of the current segment. Does not move if the active end of selection is not inside a segment. |
| LineDown | One line down. |
| LineUp | One line up. |
| NextCharacter | The next character or node in the logical order of content. |
| NextWordStart | The start of the next word or node in the logical order of content. |
| PageDown | One screen down. |
| PageUp | One screen up. |
| PrecedingCharacter | The previous character or node in the logical order of content. |
| PrecedingWordStart | The start of the current or preceding word or node in the logical order of content. |
| StartOfDocument | The logical start of the document. |
| StartOfLine | The logical start of the current line. |
| StartOfSegment | The logical start of the current segment. Does not move if the active end of selection is not inside a segment. |