Interface IMouseTargetUnknown

interface IMouseTargetUnknown {
    element: null | HTMLElement;
    mouseColumn: number;
    position: null | Position;
    range: null | Range;
    type: UNKNOWN;
}

Hierarchy (view full)

Properties

element: null | HTMLElement

The target element

mouseColumn: number

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

position: null | Position

The 'approximate' editor position

range: null | Range

The 'approximate' editor range

type: UNKNOWN