windowsforms-devexpress-dot-xtragrid-dot-views-dot-grid-651e7ef2.md
Defines the set of values used to specify the binding mode.
Namespace : DevExpress.XtraGrid.Views.Grid
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
public enum EditFormBindingMode
Public Enum EditFormBindingMode
| Name | Description |
|---|---|
Default |
Defines the same behavior as the EditFormBindingMode.Direct mode.
|
| Direct |
An edited field value in an Edit Form is passed back to the grid at the moment an end-user moves focus to another field in an Edit Form.
|
| Cached |
Edited field values in an Edit Form are collected in a proxy and passed back to the grid simultaneously when an end-user saves changes.
|
The following properties accept/return EditFormBindingMode values:
The GridOptionsEditForm.BindingMode property of the EditFormBindingMode type specifies the mode in which data from an Edit Form is passed back to the grid.
See Also