tiptap/docs/api/commands/set-node-selection.md
2022-06-08 12:15:59 +02:00

13 lines
358 B
Markdown

# setNodeSelection
`setNodeSelection` creates a new NodeSelection at a given position. A node selection is a selection that points to a single node. [See more](https://prosemirror.net/docs/ref/#state.NodeSelection)
## Parameters
`position: number`
The position the NodeSelection will be created at.
## Usage
```js
editor.commands.setNodeSelection(10)
```