MVCxGridViewFormatConditionCollection<RowType>.AddHighlight(Expression<Func<RowType, ValueType>>, String, GridConditionHighlightFormat) Method
Creates a new format condition item with the specified settings and adds it to the MVCxGridViewFormatConditionCollection<RowType> collection.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v25.1.dll
NuGet Package: DevExpress.Web.Mvc5
Declaration
public GridViewFormatConditionHighlight AddHighlight(
Expression<Func<RowType, ValueType>> fieldNameExpression,
string expression,
GridConditionHighlightFormat format
)
Parameters
| Name | Type | Description |
|---|---|---|
| fieldNameExpression | Expression<Func<RowType, ValueType>> | An expression that identifies the processed data field. |
| expression | String | A String value specifying the expression used to format grid cells. |
| format | GridConditionHighlightFormat | One of the GridConditionHighlightFormat enumeration values specifying the format (highlight) applied to cells. |
Returns
| Type | Description |
|---|---|
| GridViewFormatConditionHighlight | A GridViewFormatConditionHighlight object that is the newly created format condition item. |
See Also