Interface TextEditorOptionsChangeEvent

Represents an event describing the change in a text editor's options.

interface TextEditorOptionsChangeEvent {
    options: TextEditorOptions;
    textEditor: TextEditor;
}

Properties

Properties

The new value for the text editor's options.

textEditor: TextEditor

The text editor for which the options have changed.