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

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.v19.1.dll

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.

The following code snippets (auto-collected from DevExpress Examples) contain references to the Handled property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also