C1.Xamarin.Forms.Gauge Assembly / C1.Xamarin.Forms.Gauge Namespace / C1Gauge Class / ValueChanged Event


ValueChanged Event
​Occurs when the value changed.
Syntax
'Declaration
 
Public Event ValueChanged As EventHandler(Of GaugeValueEventArgs)
 
'Usage
 
Dim instance As C1Gauge
Dim handler As EventHandler(Of GaugeValueEventArgs)
 
AddHandler instance.ValueChanged, handler
Event Data

The event handler receives an argument of type GaugeValueEventArgs containing data related to this event. The following GaugeValueEventArgs properties provide information specific to this event.

PropertyDescription
The value regarding the change.  
See Also