LivePosition (engine/model)
@ckeditor/ckeditor5-engine/src/model/liveposition
LivePosition is a type of Position
that updates itself as document
is changed through operations. It may be used as a bookmark.
Note: Contrary to Position, LivePosition works only in roots that are
RootElement.
If DocumentFragment is passed, error will be thrown.
Note: Be very careful when dealing with LivePosition. Each LivePosition instance bind events that might
have to be unbound.
Use detach whenever you don't need LivePosition anymore.
Filtering
Properties
-
Is
trueif position is at the end of its parent,falseotherwise. -
Is
trueif position is at the beginning of its parent,falseotherwise. -
Node directly after this position. Returns
nullif this position is at the end of its parent, or if it is in a text node. -
Node directly before this position. Returns
nullif this position is at the start of its parent, or if it is in a text node. -
readonly inherited
parent : Element | DocumentFragmentmodule:engine/model/liveposition~LivePosition#parentParent element of this position.
Keep in mind that
parentvalue is calculated when the property is accessed. If position path leads to a non-existing element,parentproperty will throw error.Also it is a good idea to cache
parentproperty if it is used frequently in an algorithm (i.e. in a long loop). -
Position of the node in the tree. Path contains offsets, not indexes.
Position can be placed before, after or in a node if that node has
offsetSizegreater than1. Items in position path are starting offsets of position ancestors, starting from direct root children, down to the position offset in it's parent.ROOT |- P before: [ 0 ] after: [ 1 ] |- UL before: [ 1 ] after: [ 2 ] |- LI before: [ 1, 0 ] after: [ 1, 1 ] | |- foo before: [ 1, 0, 0 ] after: [ 1, 0, 3 ] |- LI before: [ 1, 1 ] after: [ 1, 2 ] |- bar before: [ 1, 1, 0 ] after: [ 1, 1, 3 ]fooandbarare representing text nodes. Since text nodes has offset size greater than1you can place position offset between their start and end:ROOT |- P |- UL |- LI | |- f^o|o ^ has path: [ 1, 0, 1 ] | has path: [ 1, 0, 2 ] |- LI |- b^a|r ^ has path: [ 1, 1, 1 ] | has path: [ 1, 1, 2 ] -
Root of the position path.
-
Position stickiness. See
PositionStickiness. -
Returns text node instance in which this position is placed or
nullif this position is not in a text node.
Static properties
-
internal readonly static
_createAfter : ( item: DocumentFragment | Item, stickiness: PositionStickiness ) => LivePositionmodule:engine/model/liveposition~LivePosition._createAfter -
internal readonly static
_createAt : ( itemOrPosition: DocumentFragment | Position | Item, offset: PositionOffset, stickiness: PositionStickiness ) => LivePositionmodule:engine/model/liveposition~LivePosition._createAt -
internal readonly static
_createBefore : ( item: DocumentFragment | Item, stickiness: PositionStickiness ) => LivePositionmodule:engine/model/liveposition~LivePosition._createBefore
Methods
-
constructor( root, path, stickiness )module:engine/model/liveposition~LivePosition#constructorCreates a live position.
Parameters
root : RootElementpath : Array<number>stickiness : PositionStickiness-
Defaults to
'toNone'
Related:
-
-
inherited
compareWith( otherPosition ) → PositionRelationmodule:engine/model/liveposition~LivePosition#compareWithChecks whether this position is before or after given position.
This method is safe to use it on non-existing positions (for example during operational transformation).
Parameters
otherPosition : Position
Returns
-
inherited
delegate( events ) → EmitterMixinDelegateChainmodule:engine/model/liveposition~LivePosition#delegateDelegates selected events to another
Emitter. For instance:emitterA.delegate( 'eventX' ).to( emitterB ); emitterA.delegate( 'eventX', 'eventY' ).to( emitterC );then
eventXis delegated (fired by)emitterBandemitterCalong withdata:emitterA.fire( 'eventX', data );and
eventYis delegated (fired by)emitterCalong withdata:emitterA.fire( 'eventY', data );Parameters
events : Array<string>Event names that will be delegated to another emitter.
Returns
-
detach() → voidmodule:engine/model/liveposition~LivePosition#detachUnbinds all events previously bound by
LivePosition. Use it whenever you don't needLivePositioninstance anymore (i.e. when leaving scope in which it was declared or before re-assigning variable that was referring to it).Returns
void
-
inherited
findAncestor( parentName ) → null | Elementmodule:engine/model/liveposition~LivePosition#findAncestorReturns the parent element of the given name. Returns null if the position is not inside the desired parent.
Parameters
parentName : stringThe name of the parent element to find.
Returns
null | Element
-
inherited
fire( eventOrInfo, args ) → GetEventInfo<TEvent>[ 'return' ]module:engine/model/liveposition~LivePosition#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).
-
inherited
getAncestors() → Array<Element | DocumentFragment>module:engine/model/liveposition~LivePosition#getAncestorsReturns ancestors array of this position, that is this position's parent and its ancestors.
Returns
Array<Element | DocumentFragment>Array with ancestors.
-
inherited
getCommonAncestor( position ) → null | Element | DocumentFragmentmodule:engine/model/liveposition~LivePosition#getCommonAncestorReturns an
ElementorDocumentFragmentwhich is a common ancestor of both positions. The roots of these two positions must be identical.Parameters
position : PositionThe second position.
Returns
null | Element | DocumentFragment
-
inherited
getCommonPath( position ) → Array<number>module:engine/model/liveposition~LivePosition#getCommonPathReturns the slice of two position paths which is identical. The roots of these two paths must be identical.
This method is safe to use it on non-existing positions (for example during operational transformation).
Parameters
position : PositionThe second position.
Returns
Array<number>The common path.
-
inherited
getLastMatchingPosition( skip, options ) → Positionmodule:engine/model/liveposition~LivePosition#getLastMatchingPositionGets the farthest position which matches the callback using TreeWalker.
For example:
getLastMatchingPosition( value => value.type == 'text' ); // <paragraph>[]foo</paragraph> -> <paragraph>foo[]</paragraph> getLastMatchingPosition( value => value.type == 'text', { direction: 'backward' } ); // <paragraph>foo[]</paragraph> -> <paragraph>[]foo</paragraph> getLastMatchingPosition( value => false ); // Do not move the position.Parameters
skip : ( value: TreeWalkerValue ) => booleanCallback function. Gets
TreeWalkerValueand should returntrueif the value should be skipped orfalseif not.options : TreeWalkerOptionsObject with configuration options. See
TreeWalker.Defaults to
{}
Returns
PositionThe position after the last item which matches the
skipcallback test.
-
inherited
getParentPath() → Array<number>module:engine/model/liveposition~LivePosition#getParentPathReturns a path to this position's parent. Parent path is equal to position path but without the last item.
This method is safe to use it on non-existing positions (for example during operational transformation).
Returns
Array<number>Path to the parent.
-
inherited
getShiftedBy( shift ) → Positionmodule:engine/model/liveposition~LivePosition#getShiftedByReturns a new instance of
Position, that has same parent but it's offset is shifted byshiftvalue (can be a negative value).This method is safe to use it on non-existing positions (for example during operational transformation).
Parameters
shift : numberOffset shift. Can be a negative value.
Returns
PositionShifted position.
-
inherited
getTransformedByOperation( operation ) → Positionmodule:engine/model/liveposition~LivePosition#getTransformedByOperationReturns a copy of this position that is transformed by given
operation.The new position's parameters are updated accordingly to the effect of the
operation.For example, if
nnodes are inserted before the position, the returned positionoffsetwill be increased byn. If the position was in a merged element, it will be accordingly moved to the new element, etc.This method is safe to use it on non-existing positions (for example during operational transformation).
Parameters
operation : OperationOperation to transform by.
Returns
PositionTransformed position.
-
inherited
hasSameParentAs( position ) → booleanmodule:engine/model/liveposition~LivePosition#hasSameParentAsChecks if two positions are in the same parent.
This method is safe to use it on non-existing positions (for example during operational transformation).
Parameters
position : PositionPosition to compare with.
Returns
booleantrueif positions have the same parent,falseotherwise.
-
inherited
is( type ) → this is Element | RootElementmodule:engine/model/liveposition~LivePosition#is:ELEMENTChecks whether the object is of type
Elementor its subclass.element.is( 'element' ); // -> true element.is( 'node' ); // -> true element.is( 'model:element' ); // -> true element.is( 'model:node' ); // -> true element.is( 'view:element' ); // -> false element.is( 'documentSelection' ); // -> falseAssuming that the object being checked is an element, you can also check its name:
element.is( 'element', 'imageBlock' ); // -> true if this is an <imageBlock> element text.is( 'element', 'imageBlock' ); -> falseParameters
type : 'element' | 'model:element'
Returns
this is Element | RootElement
-
Checks whether the object is of type
Text.text.is( '$text' ); // -> true text.is( 'node' ); // -> true text.is( 'model:$text' ); // -> true text.is( 'model:node' ); // -> true text.is( 'view:$text' ); // -> false text.is( 'documentSelection' ); // -> falseNote: Until version 20.0.0 this method wasn't accepting
'$text'type. The legacy'text'type is still accepted for backward compatibility.Parameters
type : '$text' | 'model:$text'
Returns
this is Text
-
inherited
is( type ) → this is RootElementmodule:engine/model/liveposition~LivePosition#is:ROOT_ELEMENTChecks whether the object is of type
RootElement.rootElement.is( 'rootElement' ); // -> true rootElement.is( 'element' ); // -> true rootElement.is( 'node' ); // -> true rootElement.is( 'model:rootElement' ); // -> true rootElement.is( 'model:element' ); // -> true rootElement.is( 'model:node' ); // -> true rootElement.is( 'view:element' ); // -> false rootElement.is( 'documentFragment' ); // -> falseAssuming that the object being checked is an element, you can also check its name:
rootElement.is( 'rootElement', '$root' ); // -> same as aboveParameters
type : 'rootElement' | 'model:rootElement'
Returns
this is RootElement
-
Checks whether the object is of type
LiveRange.liveRange.is( 'range' ); // -> true liveRange.is( 'model:range' ); // -> true liveRange.is( 'liveRange' ); // -> true liveRange.is( 'model:liveRange' ); // -> true liveRange.is( 'view:range' ); // -> false liveRange.is( 'documentSelection' ); // -> falseParameters
type : 'liveRange' | 'model:liveRange'
Returns
this is LiveRange
-
inherited
is( type ) → this is Range | LiveRangemodule:engine/model/liveposition~LivePosition#is:RANGEChecks whether the object is of type
Rangeor its subclass.range.is( 'range' ); // -> true range.is( 'model:range' ); // -> true range.is( 'view:range' ); // -> false range.is( 'documentSelection' ); // -> falseParameters
type : 'range' | 'model:range'
Returns
-
inherited
is( type ) → this is LivePositionmodule:engine/model/liveposition~LivePosition#is:LIVE_POSITIONChecks whether the object is of type
LivePosition.livePosition.is( 'position' ); // -> true livePosition.is( 'model:position' ); // -> true livePosition.is( 'liveposition' ); // -> true livePosition.is( 'model:livePosition' ); // -> true livePosition.is( 'view:position' ); // -> false livePosition.is( 'documentSelection' ); // -> falseParameters
type : 'livePosition' | 'model:livePosition'
Returns
this is LivePosition
-
inherited
is( type ) → this is Position | LivePositionmodule:engine/model/liveposition~LivePosition#is:POSITIONChecks whether the object is of type
Positionor its subclass.position.is( 'position' ); // -> true position.is( 'model:position' ); // -> true position.is( 'view:position' ); // -> false position.is( 'documentSelection' ); // -> falseParameters
type : 'position' | 'model:position'
Returns
this is Position | LivePosition
-
inherited
is( type ) → this is Selection | DocumentSelectionmodule:engine/model/liveposition~LivePosition#is:SELECTIONChecks whether the object is of type
SelectionorDocumentSelection.selection.is( 'selection' ); // -> true selection.is( 'model:selection' ); // -> true selection.is( 'view:selection' ); // -> false selection.is( 'range' ); // -> falseParameters
type : 'selection' | 'model:selection'
Returns
this is Selection | DocumentSelection
-
Checks whether the object is of type
Elementor its subclass and has the specifiedname.element.is( 'element', 'imageBlock' ); // -> true if this is an <imageBlock> element text.is( 'element', 'imageBlock' ); -> falseType parameters
N : extends string
Parameters
type : 'element' | 'model:element'name : N
Returns
boolean
-
inherited
is( type, name ) → booleanmodule:engine/model/liveposition~LivePosition#is:ROOT_ELEMENT_NAMEChecks whether the object is of type
RootElementand has the specifiedname.rootElement.is( 'rootElement', '$root' );Type parameters
N : extends string
Parameters
type : 'rootElement' | 'model:rootElement'name : N
Returns
boolean
-
Checks whether the object is of type
TextProxy.textProxy.is( '$textProxy' ); // -> true textProxy.is( 'model:$textProxy' ); // -> true textProxy.is( 'view:$textProxy' ); // -> false textProxy.is( 'range' ); // -> falseNote: Until version 20.0.0 this method wasn't accepting
'$textProxy'type. The legacy'textProxt'type is still accepted for backward compatibility.Parameters
type : '$textProxy' | 'model:$textProxy'
Returns
this is TextProxy
-
inherited
is( type ) → this is DocumentSelectionmodule:engine/model/liveposition~LivePosition#is:DOCUMENT_SELECTIONChecks whether the object is of type
DocumentSelection.selection.is( 'selection' ); // -> true selection.is( 'documentSelection' ); // -> true selection.is( 'model:selection' ); // -> true selection.is( 'model:documentSelection' ); // -> true selection.is( 'view:selection' ); // -> false selection.is( 'element' ); // -> false selection.is( 'node' ); // -> falseParameters
type : 'documentSelection' | 'model:documentSelection'
Returns
this is DocumentSelection
-
inherited
is( type ) → this is DocumentFragmentmodule:engine/model/liveposition~LivePosition#is:DOCUMENT_FRAGMENTChecks whether the object is of type
DocumentFragment.docFrag.is( 'documentFragment' ); // -> true docFrag.is( 'model:documentFragment' ); // -> true docFrag.is( 'view:documentFragment' ); // -> false docFrag.is( 'element' ); // -> false docFrag.is( 'node' ); // -> falseParameters
type : 'documentFragment' | 'model:documentFragment'
Returns
this is DocumentFragment
-
inherited
is( type ) → this is Node | Text | Element | RootElementmodule:engine/model/liveposition~LivePosition#is:NODEChecks whether the object is of type
Nodeor its subclass.This method is useful when processing model objects that are of unknown type. For example, a function may return a
DocumentFragmentor aNodethat 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 fragmentSince this method is also available on a range of view 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:modelElement.is( 'model:element' ); // -> true modelElement.is( 'view:element' ); // -> falseBy using this method it is also possible to check a name of an element:
imageElement.is( 'element', 'imageBlock' ); // -> true imageElement.is( 'element', 'imageBlock' ); // -> same as above imageElement.is( 'model:element', 'imageBlock' ); // -> same as above, but more preciseParameters
type : 'node' | 'model:node'
Returns
this is Node | Text | Element | RootElement
-
Checks whether this position is after given position.
This method is safe to use it on non-existing positions (for example during operational transformation).
Parameters
otherPosition : PositionPosition to compare with.
Returns
booleanTrue if this position is after given position.
Related:
-
Checks whether this position is before given position.
Note: watch out when using negation of the value returned by this method, because the negation will also be
trueif positions are in different roots and you might not expect this. You should probably usea.isAfter( b ) || a.isEqual( b )or!a.isBefore( p ) && a.root == b.rootin most scenarios. If your condition uses multipleisAfterandisBeforechecks, build them so they do not use negated values, i.e.:if ( a.isBefore( b ) && c.isAfter( d ) ) { // do A. } else { // do B. }or, if you have only one if-branch:
if ( !( a.isBefore( b ) && c.isAfter( d ) ) { // do B. }rather than:
if ( !a.isBefore( b ) || && !c.isAfter( d ) ) { // do B. } else { // do A. }This method is safe to use it on non-existing positions (for example during operational transformation).
Parameters
otherPosition : PositionPosition to compare with.
Returns
booleanTrue if this position is before given position.
-
Checks whether this position is equal to given position.
This method is safe to use it on non-existing positions (for example during operational transformation).
Parameters
otherPosition : PositionPosition to compare with.
Returns
booleanTrue if positions are same.
-
inherited
isTouching( otherPosition ) → booleanmodule:engine/model/liveposition~LivePosition#isTouchingChecks whether this position is touching given position. Positions touch when there are no text nodes or empty nodes in a range between them. Technically, those positions are not equal but in many cases they are very similar or even indistinguishable.
Parameters
otherPosition : PositionPosition to compare with.
Returns
booleanTrue if positions touch.
-
Checks whether the position is valid in current model tree, that is whether it points to an existing place in the model.
Returns
boolean
-
inherited
listenTo( emitter, event, callback, [ options ] ) → voidmodule:engine/model/liveposition~LivePosition#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' );An 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
-
Stops 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
-
Registers 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
-
inherited
once( event, callback, [ options ] ) → voidmodule:engine/model/liveposition~LivePosition#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
-
inherited
stopDelegating( [ event ], [ emitter ] ) → voidmodule:engine/model/liveposition~LivePosition#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
-
inherited
stopListening( [ emitter ], [ event ], [ callback ] ) → voidmodule:engine/model/liveposition~LivePosition#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
-
-
toPosition() → Positionmodule:engine/model/liveposition~LivePosition#toPosition -
internal inherited
_getCombined( source, target ) → Positionmodule:engine/model/liveposition~LivePosition#_getCombinedReturns a new position that is a combination of this position and given positions.
The combined position is a copy of this position transformed by moving a range starting at
sourceposition to thetargetposition. It is expected that this position is inside the moved range.Example:
let original = model.createPositionFromPath( root, [ 2, 3, 1 ] ); let source = model.createPositionFromPath( root, [ 2, 2 ] ); let target = model.createPositionFromPath( otherRoot, [ 1, 1, 3 ] ); original._getCombined( source, target ); // path is [ 1, 1, 4, 1 ], root is `otherRoot`Explanation:
We have a position
[ 2, 3, 1 ]and move some nodes from[ 2, 2 ]to[ 1, 1, 3 ]. The original position was inside moved nodes and now should point to the new place. The moved nodes will be after positions[ 1, 1, 3 ],[ 1, 1, 4 ],[ 1, 1, 5 ]. Since our position was in the second moved node, the transformed position will be in a sub-tree of a node at[ 1, 1, 4 ]. Looking at original path, we took care of[ 2, 3 ]part of it. Now we have to add the rest of the original path to the transformed path. Finally, the transformed position will point to[ 1, 1, 4, 1 ].Parameters
source : PositionBeginning of the moved range.
target : PositionPosition where the range is moved.
Returns
PositionCombined position.
-
internal inherited
_getTransformedByDeletion( deletePosition, howMany ) → null | Positionmodule:engine/model/liveposition~LivePosition#_getTransformedByDeletionReturns a copy of this position that is updated by removing
howManynodes starting fromdeletePosition. It may happen that this position is in a removed node. If that is the case,nullis returned instead.Parameters
deletePosition : PositionPosition before the first removed node.
howMany : numberHow many nodes are removed.
Returns
null | PositionTransformed position or
null.
-
internal inherited
_getTransformedByInsertOperation( operation ) → Positionmodule:engine/model/liveposition~LivePosition#_getTransformedByInsertOperationReturns a copy of this position transformed by an insert operation.
Parameters
operation : InsertOperation
Returns
-
internal inherited
_getTransformedByInsertion( insertPosition, howMany ) → Positionmodule:engine/model/liveposition~LivePosition#_getTransformedByInsertion -
internal inherited
_getTransformedByMergeOperation( operation ) → Positionmodule:engine/model/liveposition~LivePosition#_getTransformedByMergeOperationReturns a copy of this position transformed by merge operation.
Parameters
operation : MergeOperation
Returns
-
internal inherited
_getTransformedByMove( sourcePosition, targetPosition, howMany ) → Positionmodule:engine/model/liveposition~LivePosition#_getTransformedByMoveReturns a copy of this position that is updated by moving
howManynodes fromsourcePositiontotargetPosition.Parameters
sourcePosition : PositionPosition before the first element to move.
targetPosition : PositionPosition where moved elements will be inserted.
howMany : numberHow many consecutive nodes to move, starting from
sourcePosition.
Returns
PositionTransformed position.
-
internal inherited
_getTransformedByMoveOperation( operation ) → Positionmodule:engine/model/liveposition~LivePosition#_getTransformedByMoveOperationReturns a copy of this position transformed by a move operation.
Parameters
operation : MoveOperation
Returns
-
internal inherited
_getTransformedBySplitOperation( operation ) → Positionmodule:engine/model/liveposition~LivePosition#_getTransformedBySplitOperationReturns a copy of this position transformed by a split operation.
Parameters
operation : SplitOperation
Returns
Static methods
-
inherited static
fromJSON( json, doc ) → Positionmodule:engine/model/liveposition~LivePosition.fromJSON -
static
fromPosition( position, [ stickiness ] ) → LivePositionmodule:engine/model/liveposition~LivePosition.fromPositionCreates a
LivePositioninstance that is equal to position.Parameters
position : Position[ stickiness ] : PositionStickiness
Returns
Events
-
change( eventInfo, oldPosition )module:engine/model/liveposition~LivePosition#event:changeFired when
LivePositioninstance is changed due to changes onDocument.Parameters
Every day, we work hard to keep our documentation complete. Have you spotted outdated information? Is something missing? Please report it via our issue tracker.
With the release of version 42.0.0, we have rewritten much of our documentation to reflect the new import paths and features. We appreciate your feedback to help us ensure its accuracy and completeness.