StyleFormatCondition(FormatConditionEnum, GridColumn, Object, Object, Object, Boolean) Constructor
Initializes a new instance of the StyleFormatCondition class with the specified settings.
Namespace: DevExpress.XtraGrid
Assembly: DevExpress.XtraGrid.v24.2.dll
Declaration
public StyleFormatCondition(
FormatConditionEnum condition,
GridColumn column,
object tag,
object val1,
object val2,
bool applyToRow
)
Parameters
Name | Type | Description |
---|---|---|
condition | FormatConditionEnum | A FormatConditionEnum enumeration value specifying the type of comparison operation. This value is assigned to the StyleFormatConditionBase.Condition property. |
column | GridColumn | A GridColumn object that represents a column whose values are involved in conditional formatting. This value is assigned to the StyleFormatCondition.Column property. |
tag | Object | An object used to identify the new style condition object. This value is assigned to the StyleFormatConditionBase.Tag property. |
val1 | Object | An object that is compared to cell values as specified by the condition parameter. This value is assigned to the StyleFormatConditionBase.Value1 property. |
val2 | Object | An object that is compared to cell values as specified by the condition parameter. This value is assigned to the StyleFormatConditionBase.Value2 property. |
applyToRow | Boolean | true to apply the specified style to entire rows that contain cells matching the defined criteria; false to apply the style to individual cells. This value is assigned to the StyleFormatCondition.ApplyToRow property. |