Skip to main content

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.v14.2.Core.dll

#Declaration

[XtraSerializableProperty]
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 doesn't 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.

To learn more, see Context Menus.

See Also