'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. |