MoveToParameter

@Serializable
data class MoveToParameter(val nodeId: Int, val targetNodeId: Int, val insertBeforeNodeId: Int? = null)

Constructors

Link copied to clipboard
constructor(nodeId: Int, targetNodeId: Int, insertBeforeNodeId: Int? = null)

Properties

Link copied to clipboard
val insertBeforeNodeId: Int? = null

Drop node before this one (if absent, the moved node becomes the last child of targetNodeId).

Link copied to clipboard
val nodeId: Int

Id of the node to move.

Link copied to clipboard

Id of the element to drop the moved node into.