Skip to main content
.NET Framework 4.6.2+

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

CompositeView.AddItem(IModelViewItem) Method

Creates a View Item using specified information on it, and adds it to a Composite View’s CompositeView.Items collection.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

public ViewItem AddItem(
    IModelViewItem info
)

#Parameters

Name Type Description
info IModelViewItem

An IModelViewItem object representing the Application Model node with the information on the new View Item.

#Returns

Type Description
ViewItem

A ViewItem descendant representing the View Item added to the CompositeView.Items collection.

#Remarks

Adding a View Item to the CompositeView.Items collection raises the CompositeView.ItemsChanged event.

Generally, you do not need to use this method. Instead, add View Items via the Application Model. For this purpose, use the Application | Views | DetailView | Items node.

See Also