Spread Windows Forms 17
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / GcComboBox Class / SelectedValueChanged Event


In This Topic
    SelectedValueChanged Event (GcComboBox)
    In This Topic
    Occurs when the SelectedValue property is changed.
    Syntax
    'Declaration
     
    
    Public Event SelectedValueChanged As EventHandler
    'Usage
     
    
    Dim instance As GcComboBox
    Dim handler As EventHandler
     
    AddHandler instance.SelectedValueChanged, handler
    public event EventHandler SelectedValueChanged
    Remarks
    When you create a delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate.
    See Also