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

CustomDrawRowFooterEventArgs.Node Property

Gets the node for whose children the painted row footer is displayed.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v24.2.dll

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

#Declaration

public TreeListNode Node { get; }

#Property Value

Type Description
TreeListNode

A TreeListNode object representing the node for whose children the row footer is displayed.

#Remarks

Row footers are displayed for nodes having the same parent. You can determine this parent node using the Node property.

Use the Node property to distinguish between row footers displayed for different groups of nodes. This can be used to paint row footers in a different manner with respect to associated parent nodes. You can also perform custom painting of row footer associated with certain parent nodes only. Modify the CustomDrawEventArgs.Handled property with respect to the Node property for this purpose.

See Also