ComponentOne Xamarin.Android
ValueChanged Event


C1.Android.Gauge Assembly > C1.Android.Gauge Namespace > C1Gauge Class : 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
public event EventHandler<GaugeValueEventArgs> ValueChanged
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