PCUI API Reference - v5.8.0
    Preparing search index...

    Interface ReparentedItem

    Represents an item that has been reparented in a TreeView drag operation.

    interface ReparentedItem {
        item: TreeViewItem;
        newChildIndex?: number;
        newParent?: Element;
        oldParent: Element;
    }
    Index

    Properties

    The reparented tree view item.

    newChildIndex?: number

    The new child index of the item within its new parent.

    newParent?: Element

    The new parent of the item.

    oldParent: Element

    The old parent of the item.