Interface IMouseTargetOutsideEditor

interface IMouseTargetOutsideEditor {
    element: HTMLElement;
    mouseColumn: number;
    outsideDistance: number;
    outsidePosition: "right" | "left" | "above" | "below";
    position: Position;
    range: Range;
    type: OUTSIDE_EDITOR;
}

Properties§

§readonly element: HTMLElement

The target element

§readonly mouseColumn: number

Desired mouse column (e.g. when position.column gets clamped to text length -- clicking after text on a line).

§readonly outsideDistance: number
§readonly outsidePosition: "right" | "left" | "above" | "below"
§readonly position: Position

The 'approximate' editor position

§readonly range: Range

The 'approximate' editor range

§readonly type: OUTSIDE_EDITOR