Skip to main content

ToolTipControllerCustomDrawEventArgs.Handled Property

Gets or sets whether an event was handled, if it was handled the default actions are not required.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

public bool Handled { get; set; }

Property Value

Type Description
Boolean

true if default painting isn’t required; otherwise, false.

Remarks

The ToolTipController.CustomDraw event fires before a tooltip is painted in its default manner. If the event parameter’s Handled property is set to true, default painting will not be performed. Otherwise, any custom painting performed within an event handler will be overridden by the standard drawing.

See Also