Skip to main content

EditValueChangedFiringMode Enum

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

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public enum EditValueChangedFiringMode

Members

Name Description
Default

The RepositoryItem.EditValueChanged event fires immediately after the editor’s value has been changed by an end-user. For the DateEdit, TimeEdit and TimeSpanEdit controls, the event fires after you move focus between date/time placeholders.

Buffered

The RepositoryItem.EditValueChanged event fires after an end-user has stopped editing (typing text) and a specified amount of time (RepositoryItem.EditValueChangedFiringDelay/RepositoryItem.EditValueChangedDelay) has passed.

Related API Members

Remarks

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

See Also