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

StyleFormatCondition(FormatConditionEnum, TreeListColumn, Object, Object, Object, Boolean) Constructor

Initializes a new instance of the StyleFormatCondition class with the specified settings.

Namespace: DevExpress.XtraTreeList.StyleFormatConditions

Assembly: DevExpress.XtraTreeList.v19.1.dll

Declaration

public StyleFormatCondition(
    FormatConditionEnum condition,
    TreeListColumn column,
    object tag,
    object val1,
    object val2,
    bool applyToRow
)

Parameters

Name Type Description
condition FormatConditionEnum

A FormatConditionEnum enumeration value that specifies the type of the comparison operation. This value is assigned to the StyleFormatConditionBase.Condition property.

column TreeListColumn

A TreeListColumn object that represents the column whose values are involved in conditional formatting. This value is assigned to the StyleFormatCondition.Column property.

tag Object

Any object to be associated with the created style condition. 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 nodes that contain cells matching the defined criteria; false to apply the style to individual cells. This value is assigned to the StyleFormatCondition.ApplyToRow property.

See Also