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

CustomDrawRowFooterCellEventArgs(GraphicsCache, FooterItem, TreeListNode, ObjectPainter, FooterCellInfoArgs) Constructor

Initializes a new instance of the CustomDrawRowFooterCellEventArgs class.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v19.2.dll

Declaration

public CustomDrawRowFooterCellEventArgs(
    GraphicsCache cache,
    FooterItem item,
    TreeListNode node,
    ObjectPainter painter,
    FooterCellInfoArgs info
)

Parameters

Name Type Description
cache GraphicsCache

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

item DevExpress.XtraTreeList.FooterItem

A DevExpress.XtraTreeList.FooterItem object that stores the internal information about the footer cell being processed.

node TreeListNode

A TreeListNode object specifying the node being precessed. This value is assigned to the DevExpress.XtraTreeList.CustomDrawEventArgs.Node property.

painter DevExpress.Utils.Drawing.ObjectPainter

A DevExpress.Utils.Drawing.ObjectPainter object that provides facilities for painting an element using the default mechanism. This value is assigned to the CustomDrawEventArgs.Painter property.

info DevExpress.Utils.Drawing.FooterCellInfoArgs

A DevExpress.Utils.Drawing.FooterCellInfoArgs object that provides information used to paint an element. This value is assigned to the CustomDrawObjectEventArgs.Info property.

See Also