LiveRange (engine/model)
@ckeditor/ckeditor5-engine/src/model/liverange
LiveRange
is a type of Range
that updates itself as document
is changed through operations. It may be used as a bookmark.
Note: Be very careful when dealing with LiveRange
. Each LiveRange
instance bind events that might
have to be unbound. Use detach whenever you don't need LiveRange
anymore.
Filtering
Methods
-
Creates a live range.
-
detach()
Unbinds all events previously bound by
LiveRange
. Use it whenever you don't needLiveRange
instance anymore (i.e. when leaving scope in which it was declared or before re-assigning variable that was referring to it).
Static methods
-
createFromParentsAndOffsets( startElement, startOffset, endElement, endOffset ) → LiveRange
static
-
createFromPositionAndShift( position, shift ) → LiveRange
static
-
createFromRange( range ) → LiveRange
static
Events
-
change:content( eventInfo, range, data = { data.deletionPosition } )
Fired when
LiveRange
instance boundaries have not changed after a change in document but the change took place inside the range, effectively changing its content.Parameters
eventInfo : EventInfo
An object containing information about the fired event.
range : Range
Range with start and end position equal to start and end position of change range.
data : Object
Object with additional information about the change.
Propertiesdata.deletionPosition : null
Due to the nature of this event, this property is always set to
null
. It is passed for compatibility with theevent-change:range
event.
-
change:range( eventInfo, oldRange, data = { data.deletionPosition } )
Fired when
LiveRange
instance boundaries have changed due to changes in the document.Parameters
eventInfo : EventInfo
An object containing information about the fired event.
oldRange : Range
Range with start and end position equal to start and end position of this live range before it got changed.
data : Object
Object with additional information about the change.
Propertiesdata.deletionPosition : Position | null
Source position for remove and merge changes. Available if the range was moved to the graveyard root,
null
otherwise.