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

FooterCellCustomDrawEventArgs.Info Property

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

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v19.2.dll

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.

The following code snippets (auto-collected from DevExpress Examples) contain references to the Info property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also