INavigate Interface
Definition
Represents properties and methods allowing to navigate within the Edit control's text content.
Syntax
public interface INavigate
Properties
NavigateOptions | When implemented by a class, gets or sets navigating options. |
Position | When implemented by a class, gets or sets current position within the control's text content. |
PrevPosition | When implemented by a class, gets previous position within the control's text content. |
Methods
DisablePositionUpdate() | When implemented by a class, prevents notification of changing of caret position until
calling |
EnablePositionUpdate() | When implemented by a class, re-enables notification of changing of caret position
that was turn of by calling |
MoveTo(Point) | When implemented by a class, moves the current position to the given position. |
MoveTo(Int32, Int32) | When implemented by a class, moves the current position to the given position. |
MoveToChar(Int32) | When implemented by a class, moves the current position to the specified character in the current line. |
MoveToLine(Int32) | When implemented by a class, moves the current position to the specified line. |
MoveToLine(Int32, Int32) | When implemented by a class, moves the current position to the specified line. |
Navigate(Int32, Int32) | When implemented by a class, moves current position by the given offset value. |
ResetNavigateOptions() | When implemented by a class, resets the |
RestorePosition(Int32) | When implemented by a class, restores position from stored position list by given index. |
RestorePositionWithUndo(Int32) | When implemented by a class, restores position from stored position list by given index. |
SetNavigateOptions(NavigateOptions) | When implemented by a class, sets navigating options without validating position. |
StorePosition(Point) | When implemented by a class, stores given position to stored position list. |
StorePosition(Point, Boolean) | When implemented by a class, stores given position to stored position list. |
StorePositionWithUndo(Point) | When implemented by a class, stores given position to stored position list preserving it for undo. |
ValidatePosition(ref Point) | When implemented by a class, validates given position within control's text content. |