Table of Contents

Enum NavigateOptions

Namespace
Alternet.Editor.TextSource
Assembly
Alternet.Editor.v9.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.

[Flags]
public enum NavigateOptions

Fields

BeyondEof = 2

Specifies that user can navigate beyond end of file.

BeyondEol = 1

Specifies that user can navigate beyond end of line.

DownAtLineEnd = 8

Specifies that the current position should move to the next line when user click Right key at the end of the line.

KeepCaret = 32

Specifies that caret should not move when modifying lines programmatically.

MoveOnRightButton = 16

Specifies that current position should move to the mouse pointer when a user clicks right mouse button.

None = 0

Specifies that no flags are in effect.

UpAtLineBegin = 4

Specifies that the current position should move to the previous line when user click Left key and caret locates at the line begin.