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

FooterCellCustomDrawEventArgs(GraphicsCache, Int32, GridColumn, ObjectPainter, StyleObjectInfoArgs) Constructor

Initializes a new instance of the FooterCellCustomDrawEventArgs class.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

public FooterCellCustomDrawEventArgs(
    GraphicsCache cache,
    int rowHandle,
    GridColumn column,
    ObjectPainter painter,
    StyleObjectInfoArgs info
)

Parameters

Name Type Description
cache GraphicsCache

A GraphicsCache object that specifies the storage for the most used pens, fonts and brushes. This value is assigned to the CustomDrawEventArgs.Cache property.

rowHandle Int32

An integer value identifying the painted element’s row by its handle. This value is assigned to the RowObjectCustomDrawEventArgs.RowHandle property.

column GridColumn

A GridColumn object that represents the column containing the painted footer cell. This value is assigned to the RowCellObjectCustomDrawEventArgs.Column property.

painter DevExpress.Utils.Drawing.ObjectPainter

An DevExpress.Utils.Drawing.ObjectPainter object that provides default painting facilities. This value is assigned to the CustomDrawObjectEventArgs.Painter property.

info DevExpress.Utils.Drawing.StyleObjectInfoArgs

A DevExpress.Utils.Drawing.StyleObjectInfoArgs object that contains the View information about the element being painted. This value is assigned to the FooterCellCustomDrawEventArgs.Info property.

See Also