Skip to main content
A newer version of this page is available. .

BaseSpinEdit.QueryCloseUp Event

Occurs when the BaseSpinEdit control’s pop-up window is to be closed.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

[Browsable(false)]
public override event CancelEventHandler QueryCloseUp

Event Data

The QueryCloseUp event's data class is CancelEventArgs. The following properties provide information specific to this event:

Property Description
Cancel Gets or sets a value indicating whether the event should be canceled.

Remarks

The QueryCloseUp event occurs immediately after an end-user closes the pop-up or the BaseSpinEdit.ClosePopup or BaseSpinEdit.CancelPopup methods were called. You can cancel this event by setting its CancelEventArgs.Cancel property to false. If the QueryCloseUp event was not canceled, the BaseSpinEdit.CloseUp event occurs. After the BaseSpinEdit control’s pop-up window is completely closed, the BaseSpinEdit.Closed event is fired.

See Also