'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.
Property | Description |
---|---|
SyncData | Gets or sets a value indicating whether we synchronize data to the drop down when open. |
Value | 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