Back to Devexpress

GridViewFormatConditionIconSet Class

aspnet-devexpress-dot-web-85f09600.md

latest4.5 KB
Original Source

GridViewFormatConditionIconSet Class

A grid format condition that allows you to provide grid cells with predefined icons.

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
public class GridViewFormatConditionIconSet :
    GridFormatConditionIconSet
vb
Public Class GridViewFormatConditionIconSet
    Inherits GridFormatConditionIconSet

The following members return GridViewFormatConditionIconSet objects:

Remarks

ASPxGridView supports conditional formatting, i.e., automatically applies cell formatting based on the specified rules. The ASPxGridView.FormatConditions property provides access to a collection of rules which are represented by the GridFormatConditionBase class descendants.

Use the GridViewFormatConditionIconSet object to create a format condition allowing you to provide grid cells with predefined icons. The conditional formatting is determined for the column specified by the GridFormatConditionBase.FieldName property. By default, the formatting is applied to the same column. However you can specify the column to which the formatting will be applied using the GridViewFormatConditionIconSet.ShowInColumn property. The format (icon set) can be specified by the GridFormatConditionIconSet.Format property.

Online Demo

Conditional Formatting

Example

aspx
<dx:ASPxGridView runat="server" ... >
        <Columns>...</Columns>
     <FormatConditions>
          <dx:GridViewFormatConditionTopBottom FieldName="UnitPrice" Rule="AboveAverage" Format="RedText" />
          <dx:GridViewFormatConditionHighlight FieldName="Discount" Expression="[Discount] > 0" Format="GreenFillWithDarkGreenText" />
          <dx:GridViewFormatConditionColorScale FieldName="Quantity" Format="BlueWhiteRed" />
          <dx:GridViewFormatConditionIconSet FieldName="Total" Format="Ratings5" />
     </FormatConditions>
</dx:ASPxGridView>

Implements

IStateManager

IPropertiesOwner

IExpressionsAccessor

Inheritance

Object StateManager CollectionItem GridFormatConditionBase GridFormatConditionIndicatorBase GridFormatConditionIconSet GridViewFormatConditionIconSet

See Also

GridViewFormatConditionIconSet Members

Conditional Formatting

DevExpress.Web Namespace