setPosition method

void setPosition(
  1. Node? node, [
  2. int offset
])

The Selection.setPosition() method collapses the current selection to a single point. The document is not modified. If the content is focused and editable, the caret will blink there.

Note: This method is an alias for the Selection.collapse method.

Implementation

external void setPosition(
  Node? node, [
  int offset,
]);