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.FooterInfo Property

Gets an object containing information about the painted element.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v24.2.dll

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

#Declaration

public RowFooterInfo FooterInfo { get; }

#Property Value

Type Description
DevExpress.XtraTreeList.ViewInfo.RowFooterInfo

A DevExpress.XtraTreeList.ViewInfo.RowFooterInfo object providing information about the painted element.

#Remarks

The FooterInfo property can be used to:

  • obtain the painted element’s settings and custom paint based on these settings;
  • pass the FooterInfo property value to the DrawObject method of the object returned by the CustomDrawEventArgs.Painter property. This will paint the element using the default mechanism. Thus, you can provide a default appearance for the painted elements and simply perform additional painting within them;
  • change the DevExpress.XtraTreeList.ViewInfo.RowFooterInfo object’s properties. In this instance, you can leave the CustomDrawEventArgs.Handled property set to false thus forcing default painting, but with modified settings.
See Also