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

PivotCustomDrawFieldValueThreadSafeEventArgs.Painter Property

Gets the painter object that provides the default element painting mechanism.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v19.1.dll

Declaration

public PivotHeaderObjectPainter Painter { get; }

Property Value

Type Description
DevExpress.XtraPivotGrid.ViewInfo.PivotHeaderObjectPainter

A DevExpress.XtraPivotGrid.ViewInfo.PivotHeaderObjectPainter object.

Remarks

The Painter object provides the DrawObject method that allows you to paint the current field value using the default painting mechanism. To implement default element painting, you need to pass the event’s PivotCustomDrawFieldValueThreadSafeEventArgs.Info parameter to the DrawObject method. Alternatively, you can create your own DevExpress.XtraPivotGrid.ViewInfo.PivotHeaderObjectInfoArgs object, customize it, and pass it to the method.

See Also