Spread Windows Forms 15.0
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / GcNumber Class / PopUpOpening Event


In This Topic
    PopUpOpening Event
    In This Topic
    Occurs before the popup calculator open.
    Syntax
    'Declaration
     
    
    Public Event PopUpOpening As EventHandler(Of PopUpOpeningEventArgs)
    'Usage
     
    
    Dim instance As GcNumber
    Dim handler As EventHandler(Of PopUpOpeningEventArgs)
     
    AddHandler instance.PopUpOpening, handler
    public event EventHandler<PopUpOpeningEventArgs> PopUpOpening
    Event Data

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

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets or sets a value indicating whether we synchronize data to the drop down when open.  
    Remarks
    This event is raised if the pop-up window is been opening by either a programmatic modification or user interaction.
    See Also