Skip to main content
All docs
V25.2
  • AfterDropNodeEventArgs(TreeListNode, TreeListNode, Boolean, Boolean) Constructor

    Initializes a new instance of the AfterDropNodeEventArgs class with specified settings.

    Namespace: DevExpress.XtraTreeList

    Assembly: DevExpress.XtraTreeList.v25.2.dll

    NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

    Declaration

    public AfterDropNodeEventArgs(
        TreeListNode node,
        TreeListNode destinationNode,
        bool isCopy,
        bool isSuccess
    )

    Parameters

    Name Type Description
    node TreeListNode

    The node that the user has dropped. This value is assigned to the Node property.

    destinationNode TreeListNode

    The parent node. This value is assigned to the DestinationNode property.

    isCopy Boolean

    true if the user copied the node; otherwise, false.

    isSuccess Boolean

    true if the node was copied or moved to another node (position); otherwise, false. This value is assigned to the IsSuccess property.

    See Also