An interface for a "document" that can be navigated with a cursor, e.g. position
at line 1, column 4 etc.
| C# | Visual Basic | Visual C++ |
public interface INavigatableDocument : ISupportCursorOffset
Public Interface INavigatableDocument _ Implements ISupportCursorOffset
public interface class INavigatableDocument : ISupportCursorOffset
| All Members | Methods | Properties | |||
| Icon | Member | Description |
|---|---|---|
| CursorColumn |
The current column the cursor is in.
| |
| CursorLine |
The current line the cursor is on.
| |
| CursorOffset |
Gets the cursor offset.
(Inherited from ISupportCursorOffset.) | |
| SetCursorByLocation(Int32, Int32) |
Sets the cursor by line and column.
| |
| SetCursorByOffset(Int32) |
Sets the cursor position by offset.
| |
| TotalLines |
Gets the total number of lines in the editor.
|