Interface ICursorSelectionChangedEvent
Expand description
interface ICursorSelectionChangedEvent {
modelVersionId: number;
oldModelVersionId: number;
oldSelections: Selection[];
reason: CursorChangeReason;
secondarySelections: Selection[];
selection: Selection;
source: string;
}Properties§
§§§§§§§
readonly model Version Id: numberThe model version id.
readonly old Model Version Id: numberThe model version id the that oldSelections refer to.
readonly old Selections: Selection[]The old selections.
readonly reason: CursorChangeReasonReason.
readonly secondary Selections: Selection[]The secondary selections.
readonly selection: SelectionThe primary selection.
readonly source: stringSource of the call that caused the event.
An event describing that the cursor selection has changed.