IPosition | @jupyterlab (original) (raw)
Interface IPosition
A zero-based position in the editor.
interface IPosition {
column: number;
line: number;
[key: string]: JSONValue;
}
Hierarchy
- JSONObject
- IPosition
Indexable
- [key: string]: JSONValue
Index
Properties
Properties
Readonly
column
column: number
The cursor column number.
Readonly
line
line: number
The cursor line number.