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

DataViewBase.IsRowCellMenuEnabled Property

Gets or sets whether an end user can right-click a row cell to access its context menu. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Grid.Core, DevExpress.Wpf.Grid.Core

Declaration

public bool IsRowCellMenuEnabled { get; set; }

Property Value

Type Description
Boolean

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

Remarks

A row cell’s context menu is empty, and the GridControl does not display it when an end user right-clicks the row cell. To add menu items to the context menu, use the DataViewBase.RowCellMenuCustomizations property, or handle the DataViewBase.ShowGridMenu event.

Refer to the Context Menus topic for more information.

See Also