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

PivotCustomDrawThreadSafeEventArgs.Handled Property

Gets or sets whether the event has been handled.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v19.1.dll

Declaration

public bool Handled { get; set; }

Property Value

Type Description
Boolean

true if the event has been handled and default painting is not required; otherwise, false.

Remarks

Events used to custom paint various pivot grid elements fire before the elements are painted in their default manner. If the event parameter’s Handled property is set to true within a handler, default painting will not be performed. Otherwise, any custom painting performed within an event handler will be overridden by the pivot grid’s standard drawing.

See Also