aspnet-devexpress-dot-web-dot-aspxhint-9d13b385.md
Gets or sets which user action triggers a hint.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(HintTriggerAction.Hover)]
public HintTriggerAction TriggerAction { get; set; }
<DefaultValue(HintTriggerAction.Hover)>
Public Property TriggerAction As HintTriggerAction
| Type | Default | Description |
|---|---|---|
| HintTriggerAction | Hover |
A HintTriggerAction object that specifies a user action.
|
Available values:
| Name | Description |
|---|---|
| None |
No user action triggers a hint.
| | Hover |
A hint is displayed when a user hovers a target UI element.
| | Click |
A hint is displayed when a user clicks a target UI element.
| | HoverAndFocus |
A hint is displayed when a user hovers and focuses a target UI element.
|
<dx:ASPxHint ID="ASPxHint1" Content="Hint Content" Selector=".class_name" TriggerAction="Hover" runat="server"></dx:ASPxHint>
The TriggerAction property is not in effect if the hint is invoked using the ASPxClientHint.Show method.
See Also