Skip to main content
A newer version of this page is available. .

CreateCustomNodeEventArgs(Int32, TreeListNodes, Object) Constructor

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

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v19.2.dll

Declaration

public CreateCustomNodeEventArgs(
    int nodeID,
    TreeListNodes owner,
    object tag
)

Parameters

Name Type Description
nodeID Int32

A zero-based integer specifying the unique identifier of the created node. This value is assigned to the CreateCustomNodeEventArgs.NodeID property.

owner TreeListNodes

A TreeListNodes collection which owns the created node. This value is assigned to the CreateCustomNodeEventArgs.Owner property.

tag Object

A custom object to be associated with the created node. This value is assigned to the CreateCustomNodeEventArgs.Tag property.

See Also