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

DataViewBase.IsRowCellMenuEnabled Property

Gets or sets whether the column context menu can be shown when an end user right-clicks a data cell. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v18.2.Core.dll

Declaration

public bool IsRowCellMenuEnabled { get; set; }

Property Value

Type Description
Boolean

true, to enable the row cell context menu; otherwise, false.

Remarks

By default, this menu is empty, and the grid does not display it when a data cell is right-clicked. You should manually add menu items to the Cell Menu, using the DataViewBase.RowCellMenuCustomizations property, or by handling the DataViewBase.ShowGridMenu event.

Refer to the Context Menus topic for more information.

See Also