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

StyleFormatCondition(FormatConditionEnum, TreeListColumn, Object, Object) Constructor

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

Namespace: DevExpress.XtraTreeList.StyleFormatConditions

Assembly: DevExpress.XtraTreeList.v19.2.dll

Declaration

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

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.

See Also