Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

CustomDrawEventArgs.Handled Property

Gets or sets a value specifying whether an event was handled, if handled, default actions are not required.

Namespace: DevExpress.XtraVerticalGrid.Events

Assembly: DevExpress.XtraVerticalGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid

#Declaration

public bool Handled { get; set; }

#Property Value

Type Description
Boolean

true if default actions are not required; otherwise, false.

#Remarks

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

See Also