Packages

class Selection extends Object

Selection is the class of the object returned by window.getSelection() and other methods. It represents the text selection in the greater page, possibly spanning multiple elements, when the user drags over static text and other parts of the page. For information about text selection in an individual text editing element, see Input, TextArea and document.activeElement which typically return the parent object returned from window.getSelection().

MDN

Annotations
@RawJSType() @native()
Linear Supertypes
Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Selection
  2. Object
  3. Any
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Selection()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addRange(range: Range): Unit

    A range object that will be added to the selection.

    A range object that will be added to the selection.

    MDN

  5. def anchorOffset: Int

    Returns a number representing the offset of the selection's anchor within the anchorNode.

    Returns a number representing the offset of the selection's anchor within the anchorNode. If anchorNode is a text node, this is the number of characters within anchorNode preceding the anchor. If anchorNode is an element, this is the number of child nodes of the anchorNode preceding the anchor.

    MDN

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def collapse(parentNode: Node, offset: Int): Unit

    Collapses the current selection to a single point.

    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.

    MDN

  9. def collapseToEnd(): Unit

    Collapses the selection to the end of the last range in the selection.  If the content the selection is in is focused and editable, the caret will blink there.

    Collapses the selection to the end of the last range in the selection.  If the content the selection is in is focused and editable, the caret will blink there.

    MDN

  10. def collapseToStart(): Unit

    Collapses the selection to the start of the first range in the selection.  If the content of the selection is focused and editable, the caret will blink there.

    Collapses the selection to the start of the first range in the selection.  If the content of the selection is focused and editable, the caret will blink there.

    MDN

  11. def deleteFromDocument(): Unit

    Deletes the actual text being represented by a selection object from the document's DOM.

    Deletes the actual text being represented by a selection object from the document's DOM.

    MDN

  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def focusOffset: Int

    Returns a number representing the offset of the selection's anchor within the focusNode.

    Returns a number representing the offset of the selection's anchor within the focusNode. If focusNode is a text node, this is the number of characters within focusNode preceding the focus. If focusNode is an element, this is the number of child nodes of the focusNode preceding the focus.

    MDN

  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  17. def getRangeAt(index: Int): Range

    Returns a range object representing one of the ranges currently selected.

    Returns a range object representing one of the ranges currently selected.

    MDN

  18. def hasOwnProperty(v: String): Boolean
    Definition Classes
    Object
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  20. def isCollapsed: Boolean

    Returns a boolean indicating whether the selection's start and end points are at the same position.

    Returns a boolean indicating whether the selection's start and end points are at the same position.

    MDN

  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. def isPrototypeOf(v: Object): Boolean
    Definition Classes
    Object
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  26. def propertyIsEnumerable(v: String): Boolean
    Definition Classes
    Object
  27. def rangeCount: Int

    Returns the number of ranges in the selection.

    Returns the number of ranges in the selection.

    MDN

  28. def removeAllRanges(): Unit

    Removes all ranges from the selection, leaving the anchorNode and focusNode properties equal to null and leaving nothing selected.

    Removes all ranges from the selection, leaving the anchorNode and focusNode properties equal to null and leaving nothing selected.

    MDN

  29. def removeRange(range: Range): Unit

    Removes a range from the selection.

    Removes a range from the selection.

    MDN

  30. def selectAllChildren(parentNode: Node): Unit

    Adds all the children of the specified node to the selection.

    Adds all the children of the specified node to the selection. Previous selection is lost.

    MDN

  31. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  32. def toLocaleString(): String
    Definition Classes
    Object
  33. def toString(): String
    Definition Classes
    AnyRef → Any
  34. def valueOf(): Any
    Definition Classes
    Object
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped