Interface ISelection
Expand description
interface ISelection {
positionColumn: number;
positionLineNumber: number;
selectionStartColumn: number;
selectionStartLineNumber: number;
}Properties§
§§§§
readonly position Column: numberThe column on positionLineNumber where the selection has ended.
readonly position Line Number: numberThe line number on which the selection has ended.
readonly selection Start Column: numberThe column on selectionStartLineNumber where the selection has started.
readonly selection Start Line Number: numberThe line number on which the selection has started.
A selection in the editor. The selection is a range that has an orientation.