Xamarin.iOS Documentation | ComponentOne
C1.iOS.Gauge Assembly / C1.iOS.Gauge Namespace / C1Gauge Class / ValueChanged Event


In This Topic
    ValueChanged Event (C1Gauge)
    In This Topic
    ​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