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

CustomDrawRowFooterCellEventArgs.Node Property

Gets the node for whose children the 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 specifying the node for whose children the row footer is displayed.

Remarks

Row footer cells are intended to display summary values calculated over nodes having the same parent. When a row footer cell is painted you can determine this parent node via the Node property.

Use the Node and CustomDrawFooterCellEventArgs.Column properties to distinguish between row footer cells. This can be used to apply different painting for different cells. You can also perform custom painting of desired row footer cells only. Set the CustomDrawEventArgs.Handled property with respect to the Node and CustomDrawFooterCellEventArgs.Column property values for this purpose.

See Also