Skip to main content

LayoutView.CustomFieldEditingValueStyle Event

Allows you to customize the appearance of field value regions in edit mode.

Namespace: DevExpress.XtraGrid.Views.Layout

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

[DXCategory("Behavior")]
public event LayoutViewFieldEditingValueStyleEventHandler CustomFieldEditingValueStyle

Event Data

The CustomFieldEditingValueStyle event's data class is DevExpress.XtraGrid.Views.Layout.Events.LayoutViewFieldEditingValueStyleEventArgs.

Remarks

The LayoutView.CustomFieldValueStyle and CustomFieldEditingValueStyle event can be used to customize the appearance of card field value regions. The first event is in effect in display mode (when data is not being edited), while the second event is in effect in edit mode. Please refer to the LayoutView.CustomFieldValueStyle topic to learn more.

Important

Do not change cell values, modify the control’s layout, or change the control’s object model in the events used for custom control painting. Actions that update the layout can cause the control to malfunction.

See Also