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

CustomDrawRowEventArgs(GraphicsCache, Rectangle, AppearanceObject, RowProperties) Constructor

Initializes a new instance of the CustomDrawRowEventArgs class with the specified settings.

Namespace: DevExpress.XtraVerticalGrid.Events

Assembly: DevExpress.XtraVerticalGrid.v19.1.dll

Declaration

public CustomDrawRowEventArgs(
    GraphicsCache cache,
    Rectangle r,
    AppearanceObject appearance,
    RowProperties properties
)

Parameters

Name Type Description
cache GraphicsCache

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

r Rectangle

A Rectangle structure representing the painted element’s bounding rectangle. This value is assigned to the CustomDrawEventArgs.Bounds property.

appearance AppearanceObject

A AppearanceObject object which provides the appearance settings used to paint an element. This value is assigned to the CustomDrawEventArgs.Appearance property.

properties RowProperties

Properties specific to the row being custom painted. This value is assigned to the CustomDrawRowEventArgs.Properties property.

See Also