MVCxGridViewLayoutItemCollection<ModelType>.Add<ValueType>(Expression<Func<ModelType, ValueType>>, Action<MVCxGridViewColumnLayoutItem>) Method
In This Article
Adds a layout item to the MVCxGridViewLayoutItemCollection<ModelType> collection and specifies the item’s settings and a Model field to which the item is bound.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.2.dll
NuGet Package: DevExpress.Web.Mvc5
#Declaration
public MVCxGridViewColumnLayoutItem Add<ValueType>(
Expression<Func<ModelType, ValueType>> expression,
Action<MVCxGridViewColumnLayoutItem> method
)
#Parameters
Name | Type | Description |
---|---|---|
expression | Expression<Func<Model |
An expression that identifies the object that contains the properties to edit or display. |
method | Action<MVCx |
A delegate method that accepts MVCx |
#Type Parameters
Name |
---|
Value |
#Returns
Type | Description |
---|---|
MVCx |
An MVCx |
#Remarks
Use the Add<ValueType> method to add a customized layout item bound to the specified Model field.
Refer to the Binding to Data and Item Manipulation topics to learn more.
See Also