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

FooterCellCustomDrawEventArgs.Info Property

Gets an object providing information necessary to paint a footer cell.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v24.2.dll

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

#Declaration

public GridFooterCellInfoArgs Info { get; }

#Property Value

Type Description
DevExpress.XtraGrid.Drawing.GridFooterCellInfoArgs

A DevExpress.XtraGrid.Drawing.GridFooterCellInfoArgs object.

#Remarks

The returned object’s Value and DisplayText properties specify the summary result and its formatted text representation.

The Info property value can be passed to CustomDrawObjectEventArgs.Painter object’s DrawObject method to paint the footer cell using the default mechanism. Note that you can modify the Info property’s attributes before calling the method. This will draw the cell based on the new settings. This can be used if you need to paint additional elements over the default painted cell. If you only need to paint the footer cell with modified settings, simply leave the CustomDrawEventArgs.Handled property set to false.

Please refer to the Custom Painting Basics topic for details on using the Info property.

See Also