Interface IInlineEditOptions

interface IInlineEditOptions {
    backgroundColoring?: boolean;
    enabled?: boolean;
    fontFamily?: string;
    keepOnBlur?: boolean;
    showToolbar?: "always" | "never" | "onHover";
}

Properties

backgroundColoring?: boolean
enabled?: boolean

Enable or disable the rendering of automatic inline edit.

fontFamily?: string

Font family for inline suggestions.

keepOnBlur?: boolean

Does not clear active inline suggestions when the editor loses focus.

showToolbar?: "always" | "never" | "onHover"