Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

CustomizeNewNodeFromOuterDataEventArgs.Handled Property

Gets or sets whether you perform all the required actions manually and no default processing is required.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v24.2.dll

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

#Declaration

public bool Handled { get; set; }

#Property Value

Type Description
Boolean

true if no default processing is required; false if default processing will be performed after your event handler execution.

#Remarks

If the Handled parameter is set to false (the default value), a new node will be created in the current (destination) TreeList control after your TreeList.CustomizeNewNodeFromOuterData event handler is completed, and it will be initialized with data from the CustomizeNewNodeFromOuterDataEventArgs.NewData dictionary. If the Handled parameter is set to true, the new node is not automatically created. It’s up to you to manually perform this operation (when needed).

See Also