Skip to main content
.NET 8.0+

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

ActionBase.ToolTip Property

Specifies a tooltip for an Action.

Namespace: DevExpress.ExpressApp.Actions

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

[DefaultValue("")]
public string ToolTip { get; set; }

#Property Value

Type Default Description
String String.Empty

A string value that represents the current Action’s tooltip.

#Remarks

Use the ToolTip property to specify a custom text for an Action’s tooltip. The tooltip is displayed when a user hovers a mouse over an Action.

By default, a tooltip is set to the ActionBase.Caption property value. You can set another value in the Controller’s constructor or Designer. This value will be saved to the Application Model‘s IModelAction node. You can change this value in the Model Editor.

When the property’s value changes, the ActionBase.Changed event is raised.

See Also