'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.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
SyncData | 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