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

EditValueChangedFiringMode Enum

Lists values that specify when the editor’s RepositoryItem.EditValueChanged event should be raised.

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v18.1.dll

Declaration

public enum EditValueChangedFiringMode

Members

Name Description
Default

The RepositoryItem.EditValueChanged event is raised immediately after the editor’s value has been changed by an end-user (except for DateEdit and TimeEdit editors, see the RepositoryItem.EditValueChangedFiringMode topic for the details).

Buffered

The RepositoryItem.EditValueChanged event is raised only after an end-user has stopped editing and a specified amount of time (RepositoryItem.EditValueChangedDelay) has passed. The time interval between when the user stops editing and the RepositoryItem.EditValueChanged event is raised is specified by the RepositoryItem.EditValueChangedFiringDelay property.

Remarks

The values listed by this enumeration are used to set the RepositoryItem.EditValueChangedFiringMode property.

The following code snippets (auto-collected from DevExpress Examples) contain references to the EditValueChangedFiringMode enum.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also