NavigateOptions Enum
Definition
Namespace: Alternet.Editor.Wpf
Assembly: Alternet.Editor.Wpf.v8.dll
Defines specific options for navigation through the editor's content.
This enumeration has a FlagsAttribute
attribute that allows a bitwise combination of its member values.
Syntax
[Flags]
public enum NavigateOptions
Fields
Name | Description |
---|---|
BeyondEof | Specifies that user can navigate beyond end of file. |
BeyondEol | Specifies that user can navigate beyond end of line. |
DownAtLineEnd | Specifies that the current position should move to the next line when user click Right key at the end of the line. |
KeepCaret | Specifies that caret should not move when modifying lines programmatically. |
MoveOnRightButton | Specifies that current should moves to the mouse pointer when user clicks right mouse button. |
None | Specifies that no flags are in effect. |
UpAtLineBegin | Specifies that the current position should move to the previous line when user click Left key and caret locates at the line begin. |