Class HeatMapMouseEventArgs
Specifies class for HeatMap Mouse event args.
Namespace: Syncfusion.Blazor.HeatMap
Assembly: Syncfusion.Blazor.dll
Syntax
public class HeatMapMouseEventArgs : ClientXY
Constructors
HeatMapMouseEventArgs()
Declaration
public HeatMapMouseEventArgs()
Properties
ChangedTouches
Specifies a list of all the touch objects whose state changed between the previous touch and this touch.
Declaration
public ClientXY ChangedTouches { get; set; }
Property Value
Type |
---|
ClientXY |
CtrlKey
Specifies whether CTRL key is pressed.
Declaration
public bool CtrlKey { get; set; }
Property Value
Type |
---|
System.Boolean |
MouseX
Specifies the MouseX
Declaration
public double MouseX { get; set; }
Property Value
Type |
---|
System.Double |
MouseY
Specifies the MouseY
Declaration
public double MouseY { get; set; }
Property Value
Type |
---|
System.Double |
PointerId
Specifies the Pointer id.
Declaration
public double PointerId { get; set; }
Property Value
Type |
---|
System.Double |
PointerType
Specifies the Pointer type.
Declaration
public string PointerType { get; set; }
Property Value
Type |
---|
System.String |
PreventDefault
If sets to true, default action will be prevented.
Declaration
public bool PreventDefault { get; set; }
Property Value
Type |
---|
System.Boolean |
Target
Specifies the Target.
Declaration
public string Target { get; set; }
Property Value
Type |
---|
System.String |
Touches
Specifies a list of all the touch objects that are currently in contact with the surface
Declaration
public List<Touches> Touches { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<Touches> |
Type
Declaration
public string Type { get; set; }
Property Value
Type |
---|
System.String |