CopyToParameter

@Serializable
data class CopyToParameter(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 the copy before this node (if absent, the copy becomes the last child of targetNodeId).

Link copied to clipboard
val nodeId: Int

Id of the node to copy.

Link copied to clipboard

Id of the element to drop the copy into.