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


In This Topic
    PopUpClosing Event
    In This Topic
    Occurs when the popup calculator is closing.
    Syntax
    'Declaration
     
    
    Public Event PopUpClosing As EventHandler(Of PopUpClosingEventArgs)
    'Usage
     
    
    Dim instance As GcNumber
    Dim handler As EventHandler(Of PopUpClosingEventArgs)
     
    AddHandler instance.PopUpClosing, handler
    public event EventHandler<PopUpClosingEventArgs> PopUpClosing
    Event Data

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

    PropertyDescription
    Gets or sets a value indicating whether we synchronize data to the drop down when open.  
    Gets or sets the value from the PopUp parts.  
    Remarks
    This event is raised if the pop-up window is been closing by either a programmatic modification or user interaction.
    See Also