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

PivotGridOptionsBehavior.EditorShowMode Property

Gets or sets how in-place editors are activated.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v19.2.dll

Declaration

[DefaultValue(EditorShowMode.Default)]
[XtraSerializableProperty]
public EditorShowMode EditorShowMode { get; set; }

Property Value

Type Default Description
EditorShowMode **Default**

An EditorShowMode value that specifies how in-place editors are activated.

Available values:

Name Description
Default

Specifies the default behavior.

For the Grid Control, the Default value is equivalent to:

For the PivotGrid control, this option acts as the EditorShowMode.MouseDownFocused option.

MouseDown

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

MouseUp

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

Click

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

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

Property Paths

You can access this nested property as listed below:

Object Type Path to EditorShowMode
PivotGridControl
.OptionsBehavior.EditorShowMode

Remarks

See the EditorShowMode topic for information on the available editor activation modes.

See Also