Spread Windows Forms 15.0
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / GcComboBox Class / DropDownClosing Event


In This Topic
    DropDownClosing Event (GcComboBox)
    In This Topic
    Occurs before the dropdown window to close.
    Syntax
    'Declaration
     
    
    Public Event DropDownClosing As EventHandler(Of DropDownClosingEventArgs)
    'Usage
     
    
    Dim instance As GcComboBox
    Dim handler As EventHandler(Of DropDownClosingEventArgs)
     
    AddHandler instance.DropDownClosing, handler
    public event EventHandler<DropDownClosingEventArgs> DropDownClosing
    Event Data

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

    PropertyDescription
    Gets or sets a value that indicates whether to synchronize data to the control from the drop-down when it's closing.  
    Gets or sets the value from the drop-down dialog.  
    Remarks
    This event is raised if the drop-down window is been closing by either a programmatic modification or user interaction.
    See Also