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

ChoiceActionItem.ParentItem Property

Returns the current ChoiceActionItem’s parent item.

Namespace: DevExpress.ExpressApp.Actions

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

[Browsable(false)]
public ChoiceActionItem ParentItem { get; }

Property Value

Type Description
ChoiceActionItem

A ChoiceActionItem object representing the current Item’s parent item.

Remarks

Each ChoiceActionItem can have a collection of ChoiceActionItems, each of which can also have a collection of ChoiceActionItems, and so on. The entire Items collection of a ChoiceAction can contain two or more ChoiceActionItems with the same captions. You can determine an Item by its parent Item. For this purpose, use the ParentItem property. Alternatively, use the ChoiceActionItem.GetItemPath method.

See Also