Xceed DataGrid for WPF v7.2 Documentation
CellEditorDisplayConditions Property (DataGridControl)


Xceed.Wpf.DataGrid Assembly > Xceed.Wpf.DataGrid Namespace > DataGridControl Class : CellEditorDisplayConditions Property
Gets or sets a value indicating under what conditions the editors for the cells are displayed.
Syntax
'Declaration
 
Public Property CellEditorDisplayConditions As CellEditorDisplayConditions
'Usage
 
Dim instance As DataGridControl
Dim value As CellEditorDisplayConditions
 
instance.CellEditorDisplayConditions = value
 
value = instance.CellEditorDisplayConditions
public CellEditorDisplayConditions CellEditorDisplayConditions {get; set;}

Property Value

A combination of CellEditorDisplayConditions values indicating under what conditions the editors for the cells are displayed. By default, CellEditorDisplayConditions.None.

Member Description
None A cell's editor is displayed only when the cell is being edited.
RowIsBeingEdited All the cell editors in a row are displayed when one of the cells in a row is being edited.
MouseOverCell A cell's editor is displayed when the mouse passes over a cell.
MouseOverRow All the cell editors in a row are displayed when the mouse passes over a row.
RowIsCurrent All the cell editors in a row are displayed when the row is current.
CellIsCurrent A cell's editor is displayed when it is current.
Always Cell editors are always displayed.

Including this value when setting the CellEditorDisplayConditions property will have a significant negative impact on performance.

Remarks

Including Always when setting the CellEditorDisplayConditions property will have a significant negative impact on performance.

If MouseOverCell and/or MouseOverRow are included, the "blinking" effect that can occur if a cell editor's height is larger than the cell or row height, can be prevented by setting the cell or row's MinHeight property, via a style, to the height of the largest cell editor.

Requirements

Target Platforms: Windows 11, Windows, 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

DataGridControl Class
DataGridControl Members

Properties

CellEditorDisplayConditions Property (Column Class)
CellEditorDisplayConditions Property (Row Class)

Classes

CellEditor Class