Skip to main content

FooterCellCustomDrawEventArgs.Info Property

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

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v23.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