MVCxGridViewLayoutItemCollection<ModelType>.AddTabbedGroupItem(Action<MVCxGridViewTabbedLayoutGroup<ModelType>>) Method
Adds a new tabbed group item to the MVCxGridViewLayoutItemCollection<ModelType> collection and allows you to customize this item in a delegate method implementation.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.1.dll
NuGet Package: DevExpress.Web.Mvc5
Declaration
public MVCxGridViewTabbedLayoutGroup<ModelType> AddTabbedGroupItem(
Action<MVCxGridViewTabbedLayoutGroup<ModelType>> method
)
Parameters
Name | Type | Description |
---|---|---|
method | Action<MVCxGridViewTabbedLayoutGroup<ModelType>> | A delegate method that accepts the created MVCxGridViewTabbedLayoutGroup<ModelType> as a parameter. |
Returns
Type | Description |
---|---|
MVCxGridViewTabbedLayoutGroup<ModelType> | A MVCxGridViewTabbedLayoutGroup<ModelType> object that is the newly added tabbed group item. |
Remarks
Use the AddTabbedGroupItem method to add a customized tabbed layout group bound to the specified Model field.
Refer to the Binding to Data and Item Manipulation topics to learn more.
See Also