Class OpenMode
To set the open modes available for the Tooltip.
Inheritance
Namespace: Syncfusion.Blazor.Popups
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class OpenMode : Enum
Fields
Auto
In Auto mode, the tooltip appears when you hover over the target or when the target element receives the focus. In mobile devices, the tooltip opens on tap and hold of the target element.
Declaration
public const OpenMode Auto
Field Value
Type |
---|
OpenMode |
Click
In Click mode, the tooltip appears when you click a target element on the desktop. In mobile devices, Tooltip appears with a single tap on the target element.
Declaration
public const OpenMode Click
Field Value
Type |
---|
OpenMode |
Custom
In Custom mode, the tooltip will not appear on any default action. You have to bind your custom events and use either open or close public methods in both desktop and mobile devices.
Declaration
public const OpenMode Custom
Field Value
Type |
---|
OpenMode |
Focus
In Focus mode, Tooltip appears when you focus on a target element in desktop. In mobile devices, Tooltip appears with a single tap on the target element.
Declaration
public const OpenMode Focus
Field Value
Type |
---|
OpenMode |
Hover
In Hover mode, the tooltip appears when you hover over the target on the desktop. In mobile devices, the tooltip opens on a tap and hold of the target element.
Declaration
public const OpenMode Hover
Field Value
Type |
---|
OpenMode |