Skip to main content

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.v23.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