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

CustomDrawRowFooterEventArgs.Node Property

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

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v19.1.dll

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