Interface NotebookEditorVisibleRangesChangeEvent

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

interface NotebookEditorVisibleRangesChangeEvent {
    notebookEditor: NotebookEditor;
    visibleRanges: readonly NotebookRange[];
}

Properties

notebookEditor: NotebookEditor

The notebook editor for which the visible ranges have changed.

visibleRanges: readonly NotebookRange[]

The new value for the notebook editor's visibleRanges.