Interface NotebookCellExecutionStateChangeEvent

An event describing a cell execution state change.

interface NotebookCellExecutionStateChangeEvent {
    cell: NotebookCell;
    state: NotebookCellExecutionState;
}

Properties

Properties

The cell for which the execution state has changed.

The new execution state of the cell.