Interface IEditNavigate
Represents additional methods to navigate within the Edit control's text content.
public interface IEditNavigate : INavigate
Methods
- MoveCharLeft()
When implemented by a class, moves the current position one character to the left.
- MoveCharRight()
When implemented by a class, moves the current position one character to the right.
- MoveFileBegin()
When implemented by a class, moves the current position to the first character of the first line.
- MoveFileEnd()
When implemented by a class, moves the current position to the last character of the last line.
- MoveLineBegin()
When implemented by a class, moves the current position to the first character of current line.
- MoveLineBeginCycled()
When implemented by a class, moves the current position to the first not whitespace character/first character of current line.
- MoveLineDown()
When implemented by a class, moves the current position to the next line.
- MoveLineEnd()
When implemented by a class, moves the current position to the last character of current line.
- MoveLineEndCycled()
When implemented by a class, moves the current position to the last not whitespace character/last character of current line.
- MoveLineUp()
When implemented by a class, moves the current position to the previous line.
- MovePageDown()
When implemented by a class, moves current position to the next page.
- MovePageUp()
When implemented by a class, moves current position to the previous page.
- MoveScreenBottom()
When implemented by a class, moves the current position to the bottom of the screen.
- MoveScreenTop()
When implemented by a class, moves the current position to the top of the screen.
- MoveToBrace()
When implemented by a class, moves the current position to the next open or close brace in the text content.
- MoveToCloseBrace()
When implemented by a class, moves the current position to the next close brace in the text content.
- MoveToOpenBrace()
When implemented by a class, moves the current position to the prev open brace in the text content.
- MoveWordLeft()
When implemented by a class, moves the current position one word to the left.
- MoveWordRight()
When implemented by a class, moves the current position one word to the right.
- ProcessEnter()
When implemented by a class, performs specific actions when Enter key is pressed.
True if key was processed; otherwise false.
- ProcessShiftTab(Point)
When implemented by a class, performs specific actions when Shift + Tab key is pressed.
True if key was processed; otherwise false.
- ProcessTab(Point)
When implemented by a class, performs specific actions when Tab key is pressed.
True if key was processed; otherwise false.
- ScrollLineDown()
When implemented by a class, scrolls text content one line down.
- ScrollLineUp()
When implemented by a class, scrolls text content one line up.