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


In This Topic
    DropDownOpening Event (GcComboBox)
    In This Topic
    Occurs before dropdown window pop up.
    Syntax
    'Declaration
     
    
    Public Event DropDownOpening As EventHandler(Of DropDownOpeningEventArgs)
    'Usage
     
    
    Dim instance As GcComboBox
    Dim handler As EventHandler(Of DropDownOpeningEventArgs)
     
    AddHandler instance.DropDownOpening, handler
    public event EventHandler<DropDownOpeningEventArgs> DropDownOpening
    Event Data

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

    PropertyDescription
    Gets a value that indicates whether the drop-down operation is tiggered by touch  
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets or sets a value that indicates whether to synchronize data to the drop-down when it's opening.  
    Remarks
    This event is raised if the drop-down window is been opening by either a programmatic modification or user interaction.
    See Also