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

ToolTipControlInfo(Object, String, String, Boolean, ToolTipIconType, DefaultBoolean) Constructor

In This Article

Initializes a new instance of the ToolTipControlInfo class with the specified settings.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v24.2.dll

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

#Declaration

public ToolTipControlInfo(
    object _object,
    string text,
    string title,
    bool immediateToolTip,
    ToolTipIconType iconType,
    DefaultBoolean allowHtmlText
)

#Parameters

Name Type Description
_object Object

An object used as an identifier of the currently processed visual element. This value is assigned to the ToolTipControlInfo.Object property.

text String

A string that specifies a tooltip’s text. This value is assigned to the ToolTipControlInfo.Text property.

title String

A string that specifies a tooltip’s title. This value is assigned to the ToolTipControlInfo.Title property.

immediateToolTip Boolean

A Boolean value that specifies whether a tooltip needs to be displayed immediately or after a delay. This value is assigned to the ToolTipControlInfo.ImmediateToolTip property.

iconType ToolTipIconType

A ToolTipIconType value that specifies the kind of predefined icon to display in a tooltip. This value is assigned to the ToolTipControlInfo.IconType

allowHtmlText DefaultBoolean

A DefaultBoolean value that specifies whether HTML formatting is supported in tooltips. This value is assigned to the ToolTipControlInfo.AllowHtmlText property

See Also