Skip to main content

RichEditPopupMenuItem.Items Property

Gets a collection that contains the sub-items of the current context menu item.

Namespace: DevExpress.Web.ASPxRichEdit

Assembly: DevExpress.Web.ASPxRichEdit.v23.2.dll

NuGet Package: DevExpress.Web.Office

Declaration

public List<RichEditPopupMenuItem> Items { get; }

Property Value

Type Description
List<RichEditPopupMenuItem>

A list of RichEditPopupMenuItem objects representing a collection of sub-items.

Remarks

Use the Items property (collection) to access the sub-items of the current context menu item, if any. This collection contains only the items at the next level. To access menu items further down the menu tree, use the Items property of a subsequent menu item. If the Items property is the null reference (Nothing in Visual Basic), the current menu item does not have any sub-items.

The Items property can be also used to programmatically manage the sub-items of the current menu item. You can add, insert, remove, retrieve, and modify RichEditPopupMenuItem objects from the collection.

See Also