Class BeforeTooltipRenderEventArgs<TValue>
Class that defines beforeTooltipRenderEventArgs.
Inheritance
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class BeforeTooltipRenderEventArgs<TValue> : Object
Type Parameters
Name | Description |
---|---|
TValue | Specifies the type of BeforeTooltipRenderEventArgs. |
Constructors
BeforeTooltipRenderEventArgs()
Declaration
public BeforeTooltipRenderEventArgs()
Properties
Cancel
Cancel the tooltip.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Content
Defines the content.
Declaration
public RenderFragment Content { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.RenderFragment | A Microsoft.AspNetCore.Components.RenderFragment that defines the content to be displayed in the tooltip. |
Remarks
Use this property to specify the content that should be displayed in the tooltip. The content can be defined using a Microsoft.AspNetCore.Components.RenderFragment.
Data
Gets the data associated with this instance.
Declaration
public TValue Data { get; }
Property Value
Type | Description |
---|---|
TValue | The data value. The default value is null. |
Remarks
This property used to store data related to this instance.
Target
Gets the target element.
Declaration
public string Target { get; }
Property Value
Type | Description |
---|---|
System.String | The string value representing the target element. The default value is null. |
Remarks
This property defines the target element that is associated with this instance.