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

RepositoryItemBaseSpinEdit.EditValueChangedFiringMode Property

Gets or sets the RepositoryItem.EditValueChanged event’s firing mode.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

[DXCategory("Behavior")]
[DefaultValue(EditValueChangedFiringMode.Buffered)]
public override EditValueChangedFiringMode EditValueChangedFiringMode { get; set; }

Property Value

Type Default Description
EditValueChangedFiringMode **Buffered**

An EditValueChangedFiringMode enumeration member which specifies when the editor’s RepositoryItem.EditValueChanged event should be raised.

Available values:

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

This property overrides the RepositoryItem.EditValueChangedFiringMode property to change its default value to EditValueChangedFiringMode.Buffered.

See Also