Class SelectionChangedEventArgs
Provides data for the event that is raised when the selection changes in a SfHeatMap.
Inheritance
Namespace: Syncfusion.UI.Xaml.HeatMap
Assembly: Syncfusion.SfHeatmap.UWP.dll
Syntax
public class SelectionChangedEventArgs : EventArgs
Remarks
This class inherits from EventArgs and includes information about the old and new selected items as well as their corresponding values in a heat map.
Constructors
SelectionChangedEventArgs()
Declaration
public SelectionChangedEventArgs()
Properties
NewItem
Gets or sets the new selected item.
Declaration
public object NewItem { get; set; }
Property Value
Type |
---|
System.Object |
Remarks
This property contains the item that is currently selected after the change.
NewValue
Gets or sets the new value associated with the new selected item in a SfHeatMap.
Declaration
public HeatMapCell NewValue { get; set; }
Property Value
Type |
---|
HeatMapCell |
Remarks
This property contains the HeatMapCell value associated with the new selected item.
OldItem
Gets or sets the old selected item.
Declaration
public object OldItem { get; set; }
Property Value
Type |
---|
System.Object |
Remarks
This property contains the item that was previously selected before the change.
OldValue
Gets or sets the old value associated with the old selected item in a SfHeatMap.
Declaration
public HeatMapCell OldValue { get; set; }
Property Value
Type |
---|
HeatMapCell |
Remarks
This property contains the HeatMapCell value associated with the old selected item.