Back to Devexpress

EditorShowMode Enum

wpf-devexpress-dot-xpf-dot-core-762d0368.md

latest2.5 KB
Original Source

EditorShowMode Enum

Lists the values used to specify how the in-place editor should be invoked when a cell is clicked.

Namespace : DevExpress.Xpf.Core

Assembly : DevExpress.Xpf.Core.v25.2.dll

NuGet Package : DevExpress.Wpf.Core

Declaration

csharp
public enum EditorShowMode
vb
Public Enum EditorShowMode

Members

NameDescription
Default

Specifies the default behavior.

For the GridControl, this option acts as the EditorShowMode.MouseDown option.

If the grid functions in marquee selection mode or the multiple cell selection is enabled, this option acts as the EditorShowMode.MouseUpFocused.

| | MouseDown |

A cell’s in-place editor is activated when the left mouse button is pressed.

| | MouseDownFocused |

If a cell is focused and not being edited, an in-place editor is opened on pressing the mouse button. Clicking a non-focused cell focuses the cell first, and a subsequent mouse-down event activates the in-place editor (if not prohibited).

| | MouseUp |

A cell’s in-place editor is activated when a mouse button is released from a click within the cell.

| | MouseUpFocused |

If a cell is focused and not being edited, an in-place editor is opened on a click (the mouse button is pressed and then released). Clicking a non-focused cell focuses the cell first, and a subsequent click activates the in-place editor (if not prohibited).

|

The following properties accept/return EditorShowMode values:

Remarks

Values listed by the EditorShowMode enumeration are used to set the DataViewBase.EditorShowMode property.

See Also

EditorShowMode

DevExpress.Xpf.Core Namespace