Specifies the mode for getting the next caret position.
Declaration Syntax
C# | Visual Basic | Visual C++ |
public enum CaretPositioningMode
Public Enumeration CaretPositioningMode
public enum class CaretPositioningMode
Members
Member | Description |
---|---|
Normal |
Normal positioning (stop after every grapheme)
|
WordBorder |
Stop only on word borders.
|
WordStart |
Stop only at the beginning of words. This is used for Ctrl+Left/Ctrl+Right.
|
WordStartOrSymbol |
Stop only at the beginning of words, and anywhere in the middle of symbols.
|
WordBorderOrSymbol |
Stop only on word borders, and anywhere in the middle of symbols.
|
EveryCodepoint |
Stop between every Unicode codepoint, even within the same grapheme.
This is used to implement deleting the previous grapheme when Backspace is pressed.
|
Assembly: ICSharpCode.AvalonEdit (Module: ICSharpCode.AvalonEdit.dll) Version: 5.0.0.4238