Interface NotebookEditorSelectionChangeEvent

Represents an event describing the change in a notebook editor's selections.

interface NotebookEditorSelectionChangeEvent {
    notebookEditor: NotebookEditor;
    selections: readonly NotebookRange[];
}

Properties

notebookEditor: NotebookEditor

The notebook editor for which the selections have changed.

selections: readonly NotebookRange[]

The new value for the notebook editor's selections.