Interface IMouseTargetOverlayWidget

interface IMouseTargetOverlayWidget {
    detail: string;
    element: HTMLElement;
    mouseColumn: number;
    position: null;
    range: null;
    type: OVERLAY_WIDGET;
}

Properties§

§readonly detail: string
§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 position: null

The 'approximate' editor position

§readonly range: null

The 'approximate' editor range

§readonly type: OVERLAY_WIDGET