Skip to main content
A newer version of this page is available. .

LayoutView.CustomFieldEditingValueStyle Event

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

Namespace: DevExpress.XtraGrid.Views.Layout

Assembly: DevExpress.XtraGrid.v19.1.dll

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

Never change cell values or modify the control’s layout on this event, or any other event designed to tune the control’s appearance. Any action that causes a layout update can cause the control to malfunction.

See Also