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

RepositoryItemBaseSpinEdit.Closed Event

Occurs when the RepositoryItemBaseSpinEdit‘s pop-up window is completely closed.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

[Browsable(false)]
public override event ClosedEventHandler Closed

Event Data

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

Property Description
CloseMode Gets a value that specifies why the popup editor’s dropdown window was closed.

Remarks

The Closed event is the last event related to a RepositoryItemBaseSpinEdit‘s pop-up window closing to fire. First, the RepositoryItemBaseSpinEdit.QueryCloseUp event occurs, which indicates that the RepositoryItemBaseSpinEdit‘s pop-up window is attempting to close up. If this event was not canceled, the RepositoryItemBaseSpinEdit.CloseUp event fires. Last, when the RepositoryItemBaseSpinEdit‘s pop-up window is closed, the Closed event occurs.

Use the BaseSpinEdit.ClosePopup or BaseSpinEdit.CancelPopup methods to close the RepositoryItemBaseSpinEdit‘s pop-up window in code.

See Also