ViewSelection
Class representing an arbirtary selection in the view. See also ViewDocumentSelection.
New selection instances can be created via the constructor or one these methods:
A selection can consist of ranges that can be set by using the Selection#setTo() method.
Properties
anchor : null | ViewPositionreadonlymodule:engine/view/selection~ViewSelection#anchorSelection anchor. Anchor may be described as a position where the selection starts. Together with focus they define the direction of selection, which is important when expanding/shrinking selection. Anchor is always the start or end of the most recent added range. It may be a bit unintuitive when there are multiple ranges in selection.
editableElement : null | ViewEditableElementreadonlymodule:engine/view/selection~ViewSelection#editableElementViewEditableElement instance that contains this selection, or
nullif the selection is not inside an editable element.fakeSelectionLabel : stringreadonlymodule:engine/view/selection~ViewSelection#fakeSelectionLabelReturns fake selection label.
focus : null | ViewPositionreadonlymodule:engine/view/selection~ViewSelection#focusSelection focus. Focus is a position where the selection ends.
isBackward : booleanreadonlymodule:engine/view/selection~ViewSelection#isBackwardisCollapsed : booleanreadonlymodule:engine/view/selection~ViewSelection#isCollapsedReturns whether the selection is collapsed. Selection is collapsed when there is exactly one range which is collapsed.
isFake : booleanreadonlymodule:engine/view/selection~ViewSelection#isFakeReturns true if selection instance is marked as
fake.rangeCount : numberreadonlymodule:engine/view/selection~ViewSelection#rangeCountReturns number of ranges in selection.
_fakeSelectionLabel : stringprivatemodule:engine/view/selection~ViewSelection#_fakeSelectionLabelFake selection's label.
_isFake : booleanprivatemodule:engine/view/selection~ViewSelection#_isFakeSpecifies whether selection instance is fake.
_lastRangeBackward : booleanprivatemodule:engine/view/selection~ViewSelection#_lastRangeBackwardSpecifies whether the last added range was added as a backward or forward range.
module:engine/view/selection~ViewSelection#_rangesStores all ranges that are selected.
Methods
constructor( args )internalmodule:engine/view/selection~ViewSelection#constructorCreates new selection instance.
Note: The selection constructor is available as a factory method:
// Creates empty selection without ranges. const selection = writer.createSelection(); // Creates selection at the given range. const range = writer.createRange( start, end ); const selection = writer.createSelection( range ); // Creates selection at the given ranges const ranges = [ writer.createRange( start1, end2 ), writer.createRange( star2, end2 ) ]; const selection = writer.createSelection( ranges ); // Creates selection from the other selection. const otherSelection = writer.createSelection(); const selection = writer.createSelection( otherSelection ); // Creates selection from the document selection. const selection = writer.createSelection( editor.editing.view.document.selection ); // Creates selection at the given position. const position = writer.createPositionFromPath( root, path ); const selection = writer.createSelection( position ); // Creates collapsed selection at the position of given item and offset. const paragraph = writer.createContainerElement( 'paragraph' ); const selection = writer.createSelection( paragraph, offset ); // Creates a range inside an element which starts before the // first child of that element and ends after the last child of that element. const selection = writer.createSelection( paragraph, 'in' ); // Creates a range on an item which starts before the item and ends // just after the item. const selection = writer.createSelection( paragraph, 'on' );Copy codeSelection's constructor allow passing additional options (backward,fakeandlabel) as the last argument.// Creates backward selection. const selection = writer.createSelection( range, { backward: true } );Copy codeFake selection does not render as browser native selection over selected elements and is hidden to the user. This way, no native selection UI artifacts are displayed to the user and selection over elements can be represented in other way, for example by applying proper CSS class.
Additionally fake's selection label can be provided. It will be used to describe fake selection in DOM (and be properly handled by screen readers).
// Creates fake selection with label. const selection = writer.createSelection( range, { fake: true, label: 'foo' } );Copy codeParameters
args : tuple
delegate( events ) → EmitterMixinDelegateChaininheritedmodule:engine/view/selection~ViewSelection#delegateDelegates selected events to another
Emitter. For instance:emitterA.delegate( 'eventX' ).to( emitterB ); emitterA.delegate( 'eventX', 'eventY' ).to( emitterC );Copy codethen
eventXis delegated (fired by)emitterBandemitterCalong withdata:emitterA.fire( 'eventX', data );Copy codeand
eventYis delegated (fired by)emitterCalong withdata:emitterA.fire( 'eventY', data );Copy codeParameters
events : Array<string>Event names that will be delegated to another emitter.
Returns
fire( eventOrInfo, args ) → GetEventInfo<TEvent>[ 'return' ]inheritedmodule:engine/view/selection~ViewSelection#fireFires an event, executing all callbacks registered for it.
The first parameter passed to callbacks is an
EventInfoobject, followed by the optionalargsprovided in thefire()method call.Type parameters
Parameters
eventOrInfo : GetNameOrEventInfo<TEvent>The name of the event or
EventInfoobject if event is delegated.args : TEvent[ 'args' ]Additional arguments to be passed to the callbacks.
Returns
GetEventInfo<TEvent>[ 'return' ]By default the method returns
undefined. However, the return value can be changed by listeners through modification of theevt.return's property (the event info is the first param of every callback).
getFirstPosition() → null | ViewPositionmodule:engine/view/selection~ViewSelection#getFirstPositionReturns copy of the first position in the selection. First position is the position that is before any other position in the selection ranges. Returns
nullif no ranges are added to selection.Returns
null | ViewPosition
getFirstRange() → null | ViewRangemodule:engine/view/selection~ViewSelection#getFirstRangegetLastPosition() → null | ViewPositionmodule:engine/view/selection~ViewSelection#getLastPositionReturns copy of the last position in the selection. Last position is the position that is after any other position in the selection ranges. Returns
nullif no ranges are added to selection.Returns
null | ViewPosition
getLastRange() → null | ViewRangemodule:engine/view/selection~ViewSelection#getLastRangemodule:engine/view/selection~ViewSelection#getRangesReturns an iterable that contains copies of all ranges added to the selection.
Returns
IterableIterator<ViewRange>
getSelectedElement() → null | ViewElementmodule:engine/view/selection~ViewSelection#getSelectedElementReturns the selected element. Element is considered as selected if there is only one range in the selection, and that range contains exactly one element. Returns
nullif there is no selected element.Returns
null | ViewElement
is( type ) → this is ViewElement | ViewAttributeElement | ViewContainerElement | ViewEditableElement | ViewEmptyElement | ViewRawElement | ViewRootEditableElement | ViewUIElementinheritedmodule:engine/view/selection~ViewSelection#is:ELEMENTChecks whether this object is of type
ViewElementor its subclass.element.is( 'element' ); // -> true element.is( 'node' ); // -> true element.is( 'view:element' ); // -> true element.is( 'view:node' ); // -> true element.is( 'model:element' ); // -> false element.is( 'documentSelection' ); // -> falseCopy codeAssuming that the object being checked is an element, you can also check its name:
element.is( 'element', 'img' ); // -> true if this is an <img> element text.is( 'element', 'img' ); -> falseCopy codeParameters
type : 'element' | 'view:element'
Returns
is( type ) → this is ViewContainerElement | ViewEditableElement | ViewRootEditableElementinheritedmodule:engine/view/selection~ViewSelection#is:CONTAINER_ELEMENTChecks whether this object is of type
ViewContainerElementor its subclass.containerElement.is( 'containerElement' ); // -> true containerElement.is( 'element' ); // -> true containerElement.is( 'node' ); // -> true containerElement.is( 'view:containerElement' ); // -> true containerElement.is( 'view:element' ); // -> true containerElement.is( 'view:node' ); // -> true containerElement.is( 'model:element' ); // -> false containerElement.is( 'documentFragment' ); // -> falseCopy codeAssuming that the object being checked is a container element, you can also check its name:
containerElement.is( 'element', 'div' ); // -> true if this is a div container element containerElement.is( 'contaienrElement', 'div' ); // -> same as above text.is( 'element', 'div' ); -> falseCopy codeParameters
type : 'containerElement' | 'view:containerElement'
Returns
is( type ) → this is ViewEditableElement | ViewRootEditableElementinheritedmodule:engine/view/selection~ViewSelection#is:EDITABLE_ELEMENTChecks whether this object is of type
ViewEditableElementor its subclass.editableElement.is( 'editableElement' ); // -> true editableElement.is( 'element' ); // -> true editableElement.is( 'node' ); // -> true editableElement.is( 'view:editableElement' ); // -> true editableElement.is( 'view:element' ); // -> true editableElement.is( 'view:node' ); // -> true editableElement.is( 'model:element' ); // -> false editableElement.is( 'documentFragment' ); // -> falseCopy codeAssuming that the object being checked is an editbale element, you can also check its name:
editableElement.is( 'element', 'div' ); // -> true if this is a div element editableElement.is( 'editableElement', 'div' ); // -> same as above text.is( 'element', 'div' ); -> falseCopy codeParameters
type : 'editableElement' | 'view:editableElement'
Returns
this is ViewEditableElement | ViewRootEditableElement
is( type ) → this is ViewAttributeElementinheritedmodule:engine/view/selection~ViewSelection#is:ATTRIBUTE_ELEMENTChecks whether this object is of type
ViewAttributeElement.attributeElement.is( 'attributeElement' ); // -> true attributeElement.is( 'element' ); // -> true attributeElement.is( 'node' ); // -> true attributeElement.is( 'view:attributeElement' ); // -> true attributeElement.is( 'view:element' ); // -> true attributeElement.is( 'view:node' ); // -> true attributeElement.is( 'model:element' ); // -> false attributeElement.is( 'documentFragment' ); // -> falseCopy codeAssuming that the object being checked is an attribute element, you can also check its name:
attributeElement.is( 'element', 'b' ); // -> true if this is a bold element attributeElement.is( 'attributeElement', 'b' ); // -> same as above text.is( 'element', 'b' ); -> falseCopy codeParameters
type : 'attributeElement' | 'view:attributeElement'
Returns
this is ViewAttributeElement
is( type ) → this is ViewRootEditableElementinheritedmodule:engine/view/selection~ViewSelection#is:ROOT_ELEMENTChecks whether this object is of type
ViewRootEditableElement.rootEditableElement.is( 'rootElement' ); // -> true rootEditableElement.is( 'editableElement' ); // -> true rootEditableElement.is( 'element' ); // -> true rootEditableElement.is( 'node' ); // -> true rootEditableElement.is( 'view:editableElement' ); // -> true rootEditableElement.is( 'view:element' ); // -> true rootEditableElement.is( 'view:node' ); // -> true rootEditableElement.is( 'model:element' ); // -> false rootEditableElement.is( 'documentFragment' ); // -> falseCopy codeAssuming that the object being checked is a root editable element, you can also check its name:
rootEditableElement.is( 'element', 'div' ); // -> true if this is a div root editable element rootEditableElement.is( 'rootElement', 'div' ); // -> same as above text.is( 'element', 'div' ); -> falseCopy codeParameters
type : 'rootElement' | 'view:rootElement'
Returns
this is ViewRootEditableElement
is( type ) → this is ViewTextProxyinheritedmodule:engine/view/selection~ViewSelection#is:TEXT_PROXYChecks whether this object is of type
ViewTextProxy.textProxy.is( '$textProxy' ); // -> true textProxy.is( 'view:$textProxy' ); // -> true textProxy.is( 'model:$textProxy' ); // -> false textProxy.is( 'element' ); // -> false textProxy.is( 'range' ); // -> falseCopy codeNote: Until version 20.0.0 this method wasn't accepting
'$textProxy'type. The legacy'textProxy'type is still accepted for backward compatibility.Parameters
type : '$textProxy' | 'view:$textProxy'
Returns
this is ViewTextProxy
is( type ) → this is ViewPositioninheritedmodule:engine/view/selection~ViewSelection#is:POSITIONChecks whether this object is of type
ViewPosition.position.is( 'position' ); // -> true position.is( 'view:position' ); // -> true position.is( 'model:position' ); // -> false position.is( 'element' ); // -> false position.is( 'range' ); // -> falseCopy codeParameters
type : 'position' | 'view:position'
Returns
this is ViewPosition
is( type ) → this is ViewDocumentFragmentinheritedmodule:engine/view/selection~ViewSelection#is:DOCUMENT_FRAGMENThecks whether this object is of type
ViewDocumentFragment.docFrag.is( 'documentFragment' ); // -> true docFrag.is( 'view:documentFragment' ); // -> true docFrag.is( 'model:documentFragment' ); // -> false docFrag.is( 'element' ); // -> false docFrag.is( 'node' ); // -> falseCopy codeParameters
type : 'documentFragment' | 'view:documentFragment'
Returns
this is ViewDocumentFragment
module:engine/view/selection~ViewSelection#is:TEXTChecks whether this object is of type
ViewText.text.is( '$text' ); // -> true text.is( 'node' ); // -> true text.is( 'view:$text' ); // -> true text.is( 'view:node' ); // -> true text.is( 'model:$text' ); // -> false text.is( 'element' ); // -> false text.is( 'range' ); // -> falseCopy codeParameters
type : '$text' | 'view:$text'
Returns
this is ViewText
is( type ) → this is ViewUIElementinheritedmodule:engine/view/selection~ViewSelection#is:UI_ELEMENTChecks whether this object is of type
ViewUIElement.uiElement.is( 'uiElement' ); // -> true uiElement.is( 'element' ); // -> true uiElement.is( 'node' ); // -> true uiElement.is( 'view:uiElement' ); // -> true uiElement.is( 'view:element' ); // -> true uiElement.is( 'view:node' ); // -> true uiElement.is( 'model:element' ); // -> false uiElement.is( 'documentFragment' ); // -> falseCopy codeAssuming that the object being checked is an ui element, you can also check its name:
uiElement.is( 'element', 'span' ); // -> true if this is a span ui element uiElement.is( 'uiElement', 'span' ); // -> same as above text.is( 'element', 'span' ); -> falseCopy codeParameters
type : 'uiElement' | 'view:uiElement'
Returns
this is ViewUIElement
is( type ) → this is ViewRawElementinheritedmodule:engine/view/selection~ViewSelection#is:RAW_ELEMENTChecks whether this object is of type
ViewRawElement.rawElement.is( 'rawElement' ); // -> true rawElement.is( 'element' ); // -> true rawElement.is( 'node' ); // -> true rawElement.is( 'view:rawElement' ); // -> true rawElement.is( 'view:element' ); // -> true rawElement.is( 'view:node' ); // -> true rawElement.is( 'model:element' ); // -> false rawElement.is( 'documentFragment' ); // -> falseCopy codeAssuming that the object being checked is a raw element, you can also check its name:
rawElement.is( 'img' ); // -> true if this is an img element rawElement.is( 'rawElement', 'img' ); // -> same as above text.is( 'img' ); -> falseCopy codeParameters
type : 'rawElement' | 'view:rawElement'
Returns
this is ViewRawElement
is( type ) → this is ViewEmptyElementinheritedmodule:engine/view/selection~ViewSelection#is:EMPTY_ELEMENTChecks whether this object is of type
ViewEmptyElement.emptyElement.is( 'emptyElement' ); // -> true emptyElement.is( 'element' ); // -> true emptyElement.is( 'node' ); // -> true emptyElement.is( 'view:emptyElement' ); // -> true emptyElement.is( 'view:element' ); // -> true emptyElement.is( 'view:node' ); // -> true emptyElement.is( 'model:element' ); // -> false emptyElement.is( 'documentFragment' ); // -> falseCopy codeAssuming that the object being checked is an empty element, you can also check its name:
emptyElement.is( 'element', 'img' ); // -> true if this is a img element emptyElement.is( 'emptyElement', 'img' ); // -> same as above text.is( 'element', 'img' ); -> falseCopy codeParameters
type : 'emptyElement' | 'view:emptyElement'
Returns
this is ViewEmptyElement
module:engine/view/selection~ViewSelection#is:RANGEChecks whether this object is of type
ViewRange.range.is( 'range' ); // -> true range.is( 'view:range' ); // -> true range.is( 'model:range' ); // -> false range.is( 'element' ); // -> false range.is( 'selection' ); // -> falseCopy codeParameters
type : 'range' | 'view:range'
Returns
this is ViewRange
is( type ) → this is ViewDocumentSelectioninheritedmodule:engine/view/selection~ViewSelection#is:DOCUMENT_SELECTIONChecks whether this object is of type
ViewDocumentSelection.`docSelection.is( 'selection' ); // -> true docSelection.is( 'documentSelection' ); // -> true docSelection.is( 'view:selection' ); // -> true docSelection.is( 'view:documentSelection' ); // -> true docSelection.is( 'model:documentSelection' ); // -> false docSelection.is( 'element' ); // -> false docSelection.is( 'node' ); // -> falseCopy codeParameters
type : 'documentSelection' | 'view:documentSelection'
Returns
this is ViewDocumentSelection
is( type, name ) → booleaninheritedmodule:engine/view/selection~ViewSelection#is:ATTRIBUTE_ELEMENT_NAMEChecks whether the object is of type
ViewAttributeElementand has the specifiedname.Type parameters
N : extends string
Parameters
type : 'attributeElement' | 'view:attributeElement'name : N
Returns
boolean
is( type, name ) → booleaninheritedmodule:engine/view/selection~ViewSelection#is:EDITABLE_ELEMENT_NAMEChecks whether the object is of type
ViewEditableElementor its subclass and has the specifiedname.Type parameters
N : extends string
Parameters
type : 'editableElement' | 'view:editableElement'name : N
Returns
boolean
is( type, name ) → booleaninheritedmodule:engine/view/selection~ViewSelection#is:RAW_ELEMENT_NAMEChecks whether the object is of type
ViewRawElementand has the specifiedname.Type parameters
N : extends string
Parameters
type : 'rawElement' | 'view:rawElement'name : N
Returns
boolean
is( type, name ) → booleaninheritedmodule:engine/view/selection~ViewSelection#is:UI_ELEMENT_NAMEChecks whether the object is of type
ViewUIElementand has the specifiedname.Type parameters
N : extends string
Parameters
type : 'uiElement' | 'view:uiElement'name : N
Returns
boolean
is( type, name ) → booleaninheritedmodule:engine/view/selection~ViewSelection#is:ROOT_ELEMENT_NAMEChecks whether the object is of type
ViewRootEditableElementand has the specifiedname.Type parameters
N : extends string
Parameters
type : 'rootElement' | 'view:rootElement'name : N
Returns
boolean
is( type, name ) → booleaninheritedmodule:engine/view/selection~ViewSelection#is:EMPTY_ELEMENT_NAMEChecks whether the object is of type
ViewEmptyElementhas the specifiedname.Type parameters
N : extends string
Parameters
type : 'emptyElement' | 'view:emptyElement'name : N
Returns
boolean
is( type, name ) → booleaninheritedmodule:engine/view/selection~ViewSelection#is:CONTAINER_ELEMENT_NAMEChecks whether the object is of type
ViewContainerElementor its subclass and has the specifiedname.Type parameters
N : extends string
Parameters
type : 'containerElement' | 'view:containerElement'name : N
Returns
boolean
is( type, name ) → booleaninheritedmodule:engine/view/selection~ViewSelection#is:ELEMENT_NAMEChecks whether the object is of type
ViewElementor its subclass and has the specifiedname.Type parameters
N : extends string
Parameters
type : 'element' | 'view:element'name : N
Returns
boolean
is( type ) → this is ViewSelection | ViewDocumentSelectioninheritedmodule:engine/view/selection~ViewSelection#is:SELECTIONChecks whether this object is of type
ViewSelectionorViewDocumentSelection.selection.is( 'selection' ); // -> true selection.is( 'view:selection' ); // -> true selection.is( 'model:selection' ); // -> false selection.is( 'element' ); // -> false selection.is( 'range' ); // -> falseCopy codeParameters
type : 'selection' | 'view:selection'
Returns
this is ViewSelection | ViewDocumentSelection
is( type ) → this is ViewText | ViewNode | ViewElement | ViewAttributeElement | ViewContainerElement | ViewEditableElement | ViewEmptyElement | ViewRawElement | ViewRootEditableElement | ViewUIElementinheritedmodule:engine/view/selection~ViewSelection#is:NODEChecks whether this object is of type
ViewNodeor its subclass.This method is useful when processing view objects that are of unknown type. For example, a function may return a
ViewDocumentFragmentor aViewNodethat can be either a text node or an element. This method can be used to check what kind of object is returned.someObject.is( 'element' ); // -> true if this is an element someObject.is( 'node' ); // -> true if this is a node (a text node or an element) someObject.is( 'documentFragment' ); // -> true if this is a document fragmentCopy codeSince this method is also available on a range of model objects, you can prefix the type of the object with
model:orview:to check, for example, if this is the model's or view's element:viewElement.is( 'view:element' ); // -> true viewElement.is( 'model:element' ); // -> falseCopy codeBy using this method it is also possible to check a name of an element:
imgElement.is( 'element', 'img' ); // -> true imgElement.is( 'view:element', 'img' ); // -> same as above, but more preciseCopy codeParameters
type : 'node' | 'view:node'
Returns
isEqual( otherSelection ) → booleanmodule:engine/view/selection~ViewSelection#isEqualChecks whether, this selection is equal to given selection. Selections are equal if they have same directions, same number of ranges and all ranges from one selection equal to a range from other selection.
Parameters
otherSelection : ViewSelection | ViewDocumentSelectionSelection to compare with.
Returns
booleantrueif selections are equal,falseotherwise.
isSimilar( otherSelection ) → booleanmodule:engine/view/selection~ViewSelection#isSimilarChecks whether this selection is similar to given selection. Selections are similar if they have same directions, same number of ranges, and all trimmed ranges from one selection are equal to any trimmed range from other selection.
Parameters
otherSelection : ViewSelection | ViewDocumentSelectionSelection to compare with.
Returns
booleantrueif selections are similar,falseotherwise.
listenTo( emitter, event, callback, [ options ] ) → voidinheritedmodule:engine/view/selection~ViewSelection#listenTo:BASE_EMITTERRegisters a callback function to be executed when an event is fired in a specific (emitter) object.
Events can be grouped in namespaces using
:. When namespaced event is fired, it additionally fires all callbacks for that namespace.// myEmitter.on( ... ) is a shorthand for myEmitter.listenTo( myEmitter, ... ). myEmitter.on( 'myGroup', genericCallback ); myEmitter.on( 'myGroup:myEvent', specificCallback ); // genericCallback is fired. myEmitter.fire( 'myGroup' ); // both genericCallback and specificCallback are fired. myEmitter.fire( 'myGroup:myEvent' ); // genericCallback is fired even though there are no callbacks for "foo". myEmitter.fire( 'myGroup:foo' );Copy codeAn event callback can stop the event and set the return value of the
firemethod.Type parameters
Parameters
emitter : EmitterThe object that fires the event.
event : TEvent[ 'name' ]The name of the event.
callback : GetCallback<TEvent>The function to be called on event.
[ options ] : GetCallbackOptions<TEvent>Additional options.
Returns
void
off( event, callback ) → voidinheritedmodule:engine/view/selection~ViewSelection#offStops executing the callback on the given event. Shorthand for
this.stopListening( this, event, callback ).Parameters
event : stringThe name of the event.
callback : FunctionThe function to stop being called.
Returns
void
on( event, callback, [ options ] ) → voidinheritedmodule:engine/view/selection~ViewSelection#onRegisters a callback function to be executed when an event is fired.
Shorthand for
this.listenTo( this, event, callback, options )(it makes the emitter listen on itself).Type parameters
Parameters
event : TEvent[ 'name' ]The name of the event.
callback : GetCallback<TEvent>The function to be called on event.
[ options ] : GetCallbackOptions<TEvent>Additional options.
Returns
void
once( event, callback, [ options ] ) → voidinheritedmodule:engine/view/selection~ViewSelection#onceRegisters a callback function to be executed on the next time the event is fired only. This is similar to calling
onfollowed byoffin the callback.Type parameters
Parameters
event : TEvent[ 'name' ]The name of the event.
callback : GetCallback<TEvent>The function to be called on event.
[ options ] : GetCallbackOptions<TEvent>Additional options.
Returns
void
setFocus( itemOrPosition, [ offset ] ) → voidmodule:engine/view/selection~ViewSelection#setFocusMoves
focusto the specified location.The location can be specified in the same form as view.createPositionAt() parameters.
Parameters
itemOrPosition : ViewPosition | ViewItem[ offset ] : ViewPositionOffsetOffset or one of the flags. Used only when first parameter is a view item.
Returns
void
Fires
setTo( args ) → voidmodule:engine/view/selection~ViewSelection#setToSets this selection's ranges and direction to the specified location based on the given selectable.
// Sets selection to the given range. const range = writer.createRange( start, end ); selection.setTo( range ); // Sets selection to given ranges. const ranges = [ writer.createRange( start1, end2 ), writer.createRange( star2, end2 ) ]; selection.setTo( range ); // Sets selection to the other selection. const otherSelection = writer.createSelection(); selection.setTo( otherSelection ); // Sets selection to contents of ViewDocumentSelection. selection.setTo( editor.editing.view.document.selection ); // Sets collapsed selection at the given position. const position = writer.createPositionAt( root, path ); selection.setTo( position ); // Sets collapsed selection at the position of given item and offset. selection.setTo( paragraph, offset );Copy codeCreates a range inside an element which starts before the first child of that element and ends after the last child of that element.
selection.setTo( paragraph, 'in' );Copy codeCreates a range on an item which starts before the item and ends just after the item.
selection.setTo( paragraph, 'on' ); // Clears selection. Removes all ranges. selection.setTo( null );Copy codeSelection#setTo()method allow passing additional options (backward,fakeandlabel) as the last argument.// Sets selection as backward. selection.setTo( range, { backward: true } );Copy codeFake selection does not render as browser native selection over selected elements and is hidden to the user. This way, no native selection UI artifacts are displayed to the user and selection over elements can be represented in other way, for example by applying proper CSS class.
Additionally fake's selection label can be provided. It will be used to describe fake selection in DOM (and be properly handled by screen readers).
// Creates fake selection with label. selection.setTo( range, { fake: true, label: 'foo' } );Copy codeParameters
args : tuple
Returns
void
Fires
stopDelegating( [ event ], [ emitter ] ) → voidinheritedmodule:engine/view/selection~ViewSelection#stopDelegatingStops delegating events. It can be used at different levels:
- To stop delegating all events.
- To stop delegating a specific event to all emitters.
- To stop delegating a specific event to a specific emitter.
Parameters
[ event ] : stringThe name of the event to stop delegating. If omitted, stops it all delegations.
[ emitter ] : Emitter(requires
event) The object to stop delegating a particular event to. If omitted, stops delegation ofeventto all emitters.
Returns
void
stopListening( [ emitter ], [ event ], [ callback ] ) → voidinheritedmodule:engine/view/selection~ViewSelection#stopListening:BASE_STOPStops listening for events. It can be used at different levels:
- To stop listening to a specific callback.
- To stop listening to a specific event.
- To stop listening to all events fired by a specific object.
- To stop listening to all events fired by all objects.
Parameters
[ emitter ] : EmitterThe object to stop listening to. If omitted, stops it for all objects.
[ event ] : string(Requires the
emitter) The name of the event to stop listening to. If omitted, stops it for all events fromemitter.[ callback ] : Function(Requires the
event) The function to be removed from the call list for the givenevent.
Returns
void
toJSON() → unknownmodule:engine/view/selection~ViewSelection#toJSONConverts
ViewSelectioninstance to plain object and returns it.Returns
unknownViewSelectioninstance converted to plain object.
_addRange( range, isBackward ) → voidprivatemodule:engine/view/selection~ViewSelection#_addRangeAdds a range to the selection. Added range is copied. This means that passed range is not saved in the selection instance and you can safely operate on it.
Accepts a flag describing in which way the selection is made - passed range might be selected from start to end or from end to start. The flag is used to set anchor and focus properties.
Throws CKEditorError
view-selection-range-intersectsif added range intersects with ranges already stored in Selection instance.Parameters
range : ViewRangeisBackward : booleanDefaults to
false
Returns
void
_pushRange( range ) → voidprivatemodule:engine/view/selection~ViewSelection#_pushRangeAdds range to selection - creates copy of given range so it can be safely used and modified.
Throws CKEditorError
view-selection-range-intersectsif added range intersects with ranges already stored in selection instance.Parameters
range : ViewRange
Returns
void
_setFakeOptions( options ) → voidprivatemodule:engine/view/selection~ViewSelection#_setFakeOptionsSets this selection instance to be marked as
fake. A fake selection does not render as browser native selection over selected elements and is hidden to the user. This way, no native selection UI artifacts are displayed to the user and selection over elements can be represented in other way, for example by applying proper CSS class.Additionally fake's selection label can be provided. It will be used to describe fake selection in DOM (and be properly handled by screen readers).
Parameters
options : ViewSelectionOptionsDefaults to
{}
Returns
void
_setRanges( newRanges, isLastBackward ) → voidprivatemodule:engine/view/selection~ViewSelection#_setRangesReplaces all ranges that were added to the selection with given array of ranges. Last range of the array is treated like the last added range and is used to set anchor and focus. Accepts a flag describing in which way the selection is made.
Parameters
newRanges : Iterable<ViewRange>Iterable object of ranges to set.
isLastBackward : booleanFlag describing if last added range was selected forward - from start to end (
false) or backward - from end to start (true). Defaults tofalse.Defaults to
false
Returns
void
Events
change( eventInfo )module:engine/view/selection~ViewSelection#event:changeFired whenever selection ranges are changed through Selection API.
Parameters
eventInfo : EventInfoAn object containing information about the fired event.