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

RepositoryItemTimeSpanEdit.EditValueChangedFiringMode Property

Gets or sets whether the EditValueChanged event fires when the value changes or after a delay.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

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

#Property Value

Type Default Description
EditValueChangedFiringMode Default

A value that specifies whether the event fires when the edit value changes or after a delay.

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.

See Also