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

CardViewFormatConditionHighlight.LayoutItemStyle Property

Gets the style settings defining the custom conditional formatting applied to layout items.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

public CardViewStyleBase LayoutItemStyle { get; }

Property Value

Type Description
CardViewStyleBase

A CardViewStyleBase object that contains the style settings.

Remarks

When the GridFormatConditionExpressionBase.Format property is set to Custom, use the LayoutItemStyle property to specify the style settings that are applied to a layout item whose value meets the condition specified by the GridFormatConditionHighlight.Rule property.

Online Demo

Conditional Formatting

Example

{
...
    CardViewFormatConditionHighlight Format2 = new CardViewFormatConditionHighlight();
    Format2.Format = GridConditionHighlightFormat.Custom; 
    Format2.LayoutItemStyle.BackColor = Color.Pink;
    Format2.Rule = GridConditionRule.Expression;
    Format2.Expression = "[Quantity] < 50";
    Format2.FieldName = "Quantity";
...
}
See Also