Class TooltipOpenEventArgs<T>
Provides information about the tooltip for appointments in the schedule.
Inheritance
System.Object
TooltipOpenEventArgs<T>
Namespace: Syncfusion.Blazor.Schedule
Assembly: Syncfusion.Blazor.dll
Syntax
public class TooltipOpenEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T | The type of the appointment data. |
Constructors
TooltipOpenEventArgs()
Declaration
public TooltipOpenEventArgs()
Properties
Cancel
Gets or sets a value indicating whether to cancel the tooltip display.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | A boolean value. If set to true, the tooltip open process will be cancelled. |
Remarks
Use this property to control whether the tooltip should be shown for the current appointment.
Data
Gets the appointment data for which the tooltip is being displayed.
Declaration
public T Data { get; }
Property Value
Type | Description |
---|---|
T | An object of type |
Remarks
This property provides access to appointment information, allowing you to make decisions based on the appointment properties.