Xamarin.iOS Documentation | ComponentOne
C1.iOS.Input Assembly / C1.iOS.Input Namespace / C1ComboBox Class / Completed Event


In This Topic
    Completed Event (C1ComboBox)
    In This Topic
    Occurs when the SelectedDate or SelectedDates properties change.
    Syntax
    'Declaration
     
    
    Public Event Completed As EventHandler(Of CompletedEventArgs)
    'Usage
     
    
    Dim instance As C1ComboBox
    Dim handler As EventHandler(Of CompletedEventArgs)
     
    AddHandler instance.Completed, handler
    public event EventHandler<CompletedEventArgs> Completed
    Event Data

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

    PropertyDescription
    Gets the value.  
    See Also