Skip to main content

RepositoryItem.EditValueChangedFiringDelay Property

Gets or sets the default time interval between the moment when an end-user stops changing the editor’s value and the RepositoryItem.EditValueChanged event being raised.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DXCategory("Behavior")]
[Browsable(false)]
public static int EditValueChangedFiringDelay { get; set; }

Property Value

Type Default Description
Int32 500

An integer value which specifies the time interval in milliseconds.

Remarks

This property is in effect for editors whose RepositoryItem.EditValueChangedFiringMode property is set to EditValueChangedFiringMode.Buffered.

For individual editors, you can use the RepositoryItem.EditValueChangedDelay property to set the time interval between the moment when an end-user stops changing the editor’s value and the RepositoryItem.EditValueChanged event being raised. If this property is set to 0, the actual delay is specified by the static EditValueChangedFiringDelay property.

See Also