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.v19.2.dll

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.

Remarks

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

See Also