Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

RepositoryItemBaseSpinEdit.EditValueChangedFiringMode Property

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

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DefaultValue(EditValueChangedFiringMode.Buffered)]
[DXCategory("Behavior")]
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